-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
86 lines (86 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "codechain-indexer",
"version": "2.0.1",
"description": "Data synchronizing tool between CodeChain and DB",
"repository": "https://github.com/CodeChain-io/codechain-indexer",
"author": "CodeChain Team <[email protected]>",
"license": "Apache-2.0",
"engines": {
"node": ">=10",
"yarn": "^1.10.0"
},
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"@slack/client": "^5.0.1",
"async-lock": "^1.1.4",
"bignumber.js": "^7.2.1",
"buffer": "^5.2.1",
"codechain-sdk": "^2.0.0-alpha.2",
"codechain-stakeholder-sdk": "^2.0.0-alpha.6",
"cors": "^2.8.4",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-validation": "^1.0.2",
"fmt": "^1.1.0",
"http-status-codes": "^1.3.0",
"joi": "^14.3.1",
"lodash": "^4.17.19",
"moment": "^2.22.2",
"node-schedule": "^1.3.0",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"request": "^2.88.0",
"rlp": "^2.2.2",
"sequelize": "^4.42.0",
"sharp": "^0.23.0",
"sinon": "^7.2.7",
"ts-node": "^8.3.0",
"typescript": "^3.5.2",
"winston": "^2.4.0",
"workerpool": "^3.1.1"
},
"scripts": {
"build": "tsc --incremental -p .",
"reset": "sequelize db:migrate:undo:all && sequelize db:migrate",
"drop": "sequelize db:migrate:undo:all",
"migrate": "sequelize db:migrate",
"start": "ts-node src/index.ts",
"del": "ts-node script/deleteBlock.ts",
"test": "NODE_ENV=test mocha --exit -r ts-node/register --timeout 60000 --recursive \"test/**/*.spec.ts\"",
"lint": "tslint -p . && prettier '{src,test,script}/**/*.{ts,js,json}' -l",
"fmt": "tslint -p . --fix && prettier '{src,test,script}/**/*.{ts,js,json}' --write"
},
"devDependencies": {
"@types/async-lock": "^1.1.1",
"@types/body-parser": "^1.17.0",
"@types/chai": "^4.1.7",
"@types/chai-as-promised": "^7.1.0",
"@types/cors": "^2.8.4",
"@types/dotenv": "^4.0.3",
"@types/express": "^4.16.0",
"@types/http-status-codes": "^1.2.0",
"@types/joi": "^14.3.2",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.6",
"@types/node-schedule": "^1.2.2",
"@types/pg": "^7.4.11",
"@types/request": "^2.48.1",
"@types/sequelize": "^4.27.33",
"@types/sharp": "^0.17.10",
"@types/sinon": "^7.0.8",
"@types/supertest": "^2.0.7",
"@types/swagger-jsdoc": "^0.0.2",
"@types/swagger-ui-express": "^3.0.0",
"@types/workerpool": "^2.3.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.1.4",
"prettier": "^1.14.2",
"sequelize-cli": "^5.4.1",
"supertest": "^3.4.2",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-express": "^4.0.2",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0"
}
}