-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.16 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
{
"name": "mythx-vulnerability-monitor",
"description": "MythX vulnerability monitor for deployed Ethereum smart contracts",
"version": "0.1.0",
"contributors": [
"Belma Gutlić <[email protected]>"
],
"license": "MIT",
"scripts": {
"init": "mkdir dist",
"clean": "rm -rf dist",
"revert": "npm run compile && sequelize --config sequelizecli.js db:migrate:undo",
"revert-all": "npm run compile && sequelize --config sequelizecli.js db:migrate:undo:all",
"migrate": "npm run compile && sequelize --config sequelizecli.js db:migrate",
"prebuild": "npm run clean && npm run init",
"build": "tsc --outDir dist",
"compile": "tsc",
"pretest": "npm run compile && npm run lint",
"test": "tape \"test/**/*.js\" | tap-spec",
"coverage": "nyc --reporter=text --all --include \"src/**/*.js\" npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "tslint src/**/*.ts",
"start": "npm run compile && node --inspect=0.0.0.0:56745 -r dotenv/config src/index.js",
"dev": "./node_modules/nodemon/bin/nodemon.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.3",
"express-async-errors": "^3.0.0",
"express-validation": "^1.0.2",
"express-validator": "^5.3.1",
"helmet": "^3.13.0",
"joi": "^13.5.2",
"jwt-decode": "^2.2.0",
"mailgun-js": "^0.22.0",
"morgan": "^1.9.0",
"node-schedule": "^1.3.2",
"nodemon": "^1.17.4",
"pg": "^7.4.3",
"reflect-metadata": "^0.1.12",
"request": "^2.88.0",
"sequelize": "4.38.0",
"sequelize-typescript": "^0.6.9",
"solc": "^0.5.7",
"umzug": "^2.1.0",
"winston": "^3.0.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"@types/node": "10.9.4",
"@types/supertest": "^2.0.5",
"@types/tape": "^4.2.32",
"coveralls": "^3.0.2",
"dotenv": "^5.0.1",
"nyc": "^12.0.2",
"redtape": "^1.0.0",
"runjs": "^4.3.2",
"sequelize-cli": "^4.0.0",
"sinon": "^6.2.0",
"supertest": "^3.1.0",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
"tslint": "^5.11.0",
"typescript": "^3.0.1",
"typescript-eslint-parser": "^18.0.0"
}
}