-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "stox-bc-api",
"version": "1.0.0",
"engines": {
"node": ">=8.9.2"
},
"scripts": {
"start": "nodemon -e js . | pino",
"serve": "node .",
"lint:fix": "prettier-eslint --write \"src/**/*.js\" && eslint src",
"jest:integration": "jest"
},
"private": true,
"main": "src/index.js",
"jest": {
"rootDir": ".",
"testRegex": "./test/integration/.*.js$",
"moduleDirectories": [
"node_modules",
"src"
],
"testEnvironment": "node"
},
"dependencies": {
"@welldone-software/node-toolbelt": "^1.2.0",
"app-module-path": "^2.2.0",
"body-parser": "^1.18.2",
"compression": "^1.7.1",
"express": "^4.16.2",
"express-status-monitor": "^1.0.1",
"lodash": "^4.17.4",
"standard-http-error": "^2.0.1",
"web3": "^1.0.0-beta.27"
},
"devDependencies": {
"@types/jest": "^21.1.10",
"axios": "^0.17.1",
"eslint": "^4.14.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^21.2.1",
"nodemon": "^1.14.7",
"prettier": "^1.7.4",
"prettier-eslint": "^8.7.0",
"prettier-eslint-cli": "^4.7.0"
}
}