-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.25 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
{
"name": "appName",
"version": "2.1.0",
"private": true,
"main": "app.js",
"scripts": {
"postinstall": "bower install",
"start": "node app.js",
"dev": "nodemon app.js",
"standard": "standard",
"jest": "NODE_ENV=test jest",
"test": "npm run standard && npm run jest"
},
"engines": {
"node": "^8.9"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"<rootDir>/config"
],
"verbose": true
},
"standard": {
"globals": [
"test",
"describe",
"beforeEach",
"expect"
],
"ignore": [
"public"
]
},
"dependencies": {
"azure-storage": "^2.6.0",
"body-parser": "^1.18.2",
"bower": "^1.8.2",
"compression": "^1.7.1",
"config": "^1.27.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"ethproof": "0.0.4",
"express": "^4.16.2",
"glob": "^7.1.2",
"helmet": "^3.9.0",
"lodash": "^4.17.4",
"mongoose": "^4.13.0",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"passport": "^0.4.0",
"passport-azure-ad": "^3.0.8",
"request": "^2.83.0",
"web3": "0.19.0",
"winston": "^2.4.0"
},
"devDependencies": {
"jest": "^21.2.1",
"nodemon": "^1.12.1",
"standard": "^10.0.3"
}
}