-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.02 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.02 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "db-api",
"version": "1.9.1",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/tokenguardio/db-api"
},
"scripts": {
"build-ts": "tsc",
"clean-dist": "rimraf ./dist",
"build": "npm run clean-dist && npm run build-ts && npm run lint",
"debug": "npm run build && npm run watch-debug",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --fix",
"serve": "node dist/src/server.js",
"start": "npm run serve",
"test": "jest --forceExit --verbose --passWithNoTests --detectOpenHandles",
"start:dev": "ts-node-dev --poll --respawn --transpile-only src/server.ts",
"migrate": "knex migrate:latest",
"kanel": "npx kanel"
},
"dependencies": {
"@polkadot/keyring": "^12.6.2",
"@subsquid/ink-abi": "^3.1.0",
"cors": "^2.8.5",
"dotenv": "16.3.1",
"errorhandler": "1.5.1",
"ethers": "^6.13.1",
"express": "4.18.2",
"helmet": "^7.1.0",
"http-status": "^1.7.3",
"joi": "^17.11.0",
"knex": "^3.1.0",
"lodash": "^4.17.21",
"node-sql-parser": "^4.17.0",
"pg": "^8.11.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"winston": "3.11.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/errorhandler": "1.5.3",
"@types/eslint": "8.44.9",
"@types/express": "4.17.21",
"@types/jest": "^29.5.11",
"@types/knex": "^0.16.1",
"@types/lodash": "^4.17.6",
"@types/mock-knex": "^0.4.8",
"@types/node": "^20.10",
"@types/pg": "^8.11.0",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "6.15.0",
"@typescript-eslint/parser": "6.15.0",
"concurrently": "^8.2.2",
"eslint": "8.56.0",
"jest": "^29.7.0",
"kanel": "^3.8.2",
"kanel-knex": "^2.3.3",
"mock-knex": "^0.4.13",
"nodemon": "^3.0.2",
"rimraf": "^5.0.5",
"supertest": "^6.3.4",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "5.3.3"
}
}