-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.3 KB
/
package.json
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
42
43
44
45
46
47
48
49
{
"name": "test",
"version": "1.0.0",
"description": "",
"main": "./lib/index.js",
"bin": {
"spl-metadata": "./lib/index.js"
},
"scripts": {
"start": "node index.js",
"develop": "nodemon index.js",
"ts-node": "ts-node",
"lint": "eslint 'src/**/*.{js,ts}' --fix",
"build": "tsc -p .",
"watch": "tsc -w -p ."
},
"author": "",
"license": "ISC",
"dependencies": {
"@solana/web3.js": "^1.29.2",
"arweave": "^1.10.23",
"axios": "^0.26.1",
"body-parser": "^1.20.0",
"borsh": "^0.6.0",
"bs58": "^4.0.1",
"commander": "^8.2.0",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"express-validator": "^6.14.0",
"mongoose": "^6.3.1",
"morgan": "^1.10.0",
"trim-request": "^1.0.6"
},
"devDependencies": {
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"engines": {
"node": "14.17.5"
}
}