-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json.example
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json.example
File metadata and controls
41 lines (41 loc) · 1.04 KB
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
34
35
36
37
38
39
40
41
{
"name": "web3server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon -r dotenv/config app.ts dotenv_config_path=.env.dev"
},
"dependencies": {
"@metaplex-foundation/js": "^0.17.4",
"@solana/pay": "^0.2.4",
"@solana/spl-token": "^0.3.6",
"@solana/web3.js": "^1.66.2",
"@types/cookie-parser": "^1.4.3",
"@types/debug": "^4.1.7",
"@types/express": "^4.17.14",
"@types/http-errors": "^2.0.1",
"@types/morgan": "^1.9.3",
"@types/node": "^18.11.9",
"axios": "^1.1.3",
"bignumber.js": "^9.1.0",
"cookie-parser": "~1.4.6",
"cors": "^2.8.5",
"debug": "~4.3.4",
"dotenv": "^16.0.3",
"ejs": "~3.1.8",
"express": "~4.18.2",
"http-errors": "~2.0.0",
"morgan": "~1.10.0",
"sleep": "^6.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/sleep": "^0.0.8",
"axios-mock-adapter": "^1.21.2",
"nodemon": "^2.0.20",
"npm": "^8.19.2"
}
}