-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 850 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "pumplaunch",
"version": "1.0.0",
"private": true,
"description": "",
"main": "src/server.js",
"type": "commonjs",
"workspaces": [
"client"
],
"scripts": {
"start": "node src/server.js",
"server": "node src/server.js",
"client:dev": "npm run dev --workspace client",
"client:install": "npm install --workspace client",
"client:build": "npm run build --workspace client",
"client:preview": "npm run preview --workspace client",
"build": "npm run client:build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@solana/spl-token": "^0.4.14",
"@solana/web3.js": "^1.98.4",
"bs58": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"multer": "^2.0.2"
}
}