-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 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
42
43
44
45
46
47
48
49
{
"name": "polkadot-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "ENV=test && npx tsc && db-migrate --env test up && jasmine && db-migrate db:drop test",
"start": "nodemon src/server.ts",
"watch": "tsc-watch --esModuleInterop src/server.ts --outDir ./dist --onSuccess \"node ./dist/server.js\"",
"migrate": "db-migrate --env test up && db-migrate up",
"build": "npx tsc"
},
"author": "",
"license": "ISC",
"dependencies": {
"@polkadot/api": "^9.12.1",
"@types/express": "^4.17.15",
"@types/jasmine": "^4.3.1",
"@types/node": "^18.11.15",
"@types/node-cron": "^3.0.7",
"bn.js": "^5.2.1",
"body-parser": "^1.19.0",
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2",
"dotenv": "^16.0.3",
"node": "^19.3.0",
"node-cron": "^3.0.2",
"nodemon": "^2.0.20",
"pg": "^8.8.0",
"pg-connection-string": "^2.5.0",
"pg-cursor": "^2.7.4",
"pg-pool": "^3.5.2",
"pg-query-stream": "^4.2.4",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/pg": "^8.6.6",
"@types/supertest": "^2.0.12",
"@types/typescript": "^2.0.0",
"express": "^4.18.2",
"jasmine": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"jasmine-ts": "^0.3.0",
"tsc-watch": "^6.0.0"
}
}