-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.47 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
50
51
52
{
"type": "module",
"name": "vault-service-test",
"version": "0.0.1",
"main": "index.js",
"license": "MIT",
"packageManager": "yarn@4.5.0+sha512.837566d24eec14ec0f5f1411adb544e892b3454255e61fdef8fd05f3429480102806bac7446bc9daff3896b01ae4b62d00096c7e989f1596f2af10b927532f39",
"dependencies": {
"@polkadot/api": "^13.2.1",
"@polkadot/keyring": "^13.1.1",
"@slack/types": "^2.9.0",
"@slack/web-api": "^6.9.1",
"big.js": "^6.2.1",
"bs58": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-rate-limit": "^7.1.4",
"helmet": "^7.1.0",
"morgan": "^1.10.0",
"node-fetch": "^3.3.2",
"stellar-sdk": "^10.4.1"
},
"scripts": {
"prod": "NODE_ENV=production node ./dist/src/server.js",
"dev": "node --loader ts-node/esm src/server.ts",
"build": "tsc ",
"prepare": "husky install"
},
"devDependencies": {
"@polkadot/types-augment": "^13.2.1",
"@polkadot/types-codec": "^13.2.1",
"@polkadot/types-create": "^13.2.1",
"@polkadot/types-known": "^13.2.1",
"@types/big.js": "^6",
"@types/cors": "^2.8.16",
"@types/express": "^4.17.20",
"@types/morgan": "^1.9.9",
"@types/node": "^20.8.9",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"husky": ">=6",
"lint-staged": ">=10",
"nodemon": "^3.0.1",
"prettier": "3.0.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}