-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
53
54
55
56
57
58
{
"name": "@joystream/status-endpoint",
"version": "0.1.0",
"main": "./lib/app.js",
"license": "MIT",
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/app.ts",
"build": "yarn tsc --build tsconfig.json",
"start": "yarn run build && pm2 start ./lib/app.js --name status-server -o out.log -e err.log"
},
"resolutions": {
"@polkadot/api": "10.12.1",
"@polkadot/keyring": "12.6.2",
"@polkadot/types": "10.12.1",
"@polkadot/util": "12.6.2",
"@polkadot/util-crypto": "12.6.2",
"@polkadot/networks": "12.6.2",
"@polkadot/x-fetch": "12.6.2",
"@polkadot/x-global": "12.6.2",
"@polkadot/x-ws": "12.6.2",
"typescript": "^5.3.3",
"bn.js": "^5.2.1",
"rxjs": "^7.4.0",
"@types/bn.js": "^5.1.0"
},
"dependencies": {
"@joystream/types": "^4.2.0",
"@polkadot/api": "10.12.1",
"@polkadot/keyring": "12.6.2",
"@polkadot/types": "10.12.1",
"@polkadot/util": "12.6.2",
"@polkadot/util-crypto": "12.6.2",
"@types/apicache": "^1.6.1",
"@types/bn.js": "^5.1.1",
"apicache": "^1.6.3",
"axios": "^1.4.0",
"bn.js": "5.2.1",
"cors": "^2.8.5",
"cross-fetch": "^3.0.6",
"discord.js": "^14.14.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.27.0",
"node-cron": "^3.0.2",
"octokit": "^3.1.2",
"pm2": "^4.4.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/express": "^4.17.6",
"@types/node": "^14",
"@types/node-cron": "^3.0.8",
"nodemon": "^2.0.15",
"ts-node": "^10.2.1",
"typescript": "5.3.3"
}
}