-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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": "codechain-keystore-server",
"version": "0.3.0",
"author": "CodeChain Team <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"start": "ts-node ./bin/www.ts",
"load": "ts-node ./bin/load.ts",
"test": "yarn lint && jest --env node",
"lint": "tslint -p . && prettier '**/*.ts' -l",
"fmt": "tslint -p . --fix && prettier '**/*ts' --write",
"migrate": "knex migrate:latest --knexfile ./knexfile.js",
"rollback": "knex migrate:rollback --knexfile ./knexfile.js",
"seed": "knex seed:run --knexfile ./knexfile.js"
},
"dependencies": {
"codechain-keystore": "^0.6.1",
"codechain-primitives": "^1.0.1",
"commander": "^4.0.1",
"config": "^3.1.0",
"debug": "~2.6.9",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"knex": "^0.19.5",
"morgan": "~1.9.1",
"morgan-body": "^2.4.5",
"objection": "^1.6.8",
"pg": "^7.10.0",
"request": "^2.88.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/config": "^0.0.34",
"@types/debug": "^0.0.30",
"@types/express": "^4.16.0",
"@types/http-errors": "^1.6.1",
"@types/jest": "^23.3.1",
"@types/lodash": "^4.14.116",
"@types/morgan": "^1.7.35",
"@types/node-sass-middleware": "^0.0.30",
"@types/request-promise": "^4.1.42",
"@types/supertest": "^2.0.5",
"jest": "^24.8.0",
"prettier": "1.14.2",
"superagent": "^3.8.3",
"supertest": "^3.1.0",
"ts-jest": "^23.1.3",
"ts-node": "^7.0.0",
"tsc": "^1.20150623.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"typescript": "^3.7.2"
},
"resolutions": {
"merge": "^1.2.1"
}
}