-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "witch-one-p2p-name",
"version": "1.0.0",
"main": "index.js",
"author": "Team STEP <[email protected]>",
"license": "MIT",
"scripts": {
"build": "tsc --project ./",
"dev": "nodemon -r dotenv/config src/server.ts",
"start": "node -r dotenv/config dist/server.js",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts ."
},
"dependencies": {
"@astar-network/astar-sdk-core": "^0.1.19",
"@polkadot/api": "^9.14.2",
"@polkadot/api-contract": "^9.14.2",
"@polkadot/keyring": "^10.4.2",
"@polkadot/util": "^10.4.2",
"@polkadot/util-crypto": "^10.4.2",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"express-session": "^1.17.3",
"helmet": "^6.0.1",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.6",
"@types/morgan": "^1.9.4",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"eslint": "^8.34.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}