-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 908 Bytes
/
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
{
"name": "test",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon babel .bin/www",
"precommit": "lint-staged",
"test": "jest --watch",
"build": "babel src -d lib"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"ejs": "~2.5.7",
"express": "~4.16.0",
"fs": "0.0.1-security",
"fs-extra": "^6.0.1",
"googleapis": "^27.0.0",
"http-errors": "~1.6.2",
"mongodb": "^2.2.33",
"morgan": "~1.9.0",
"multer": "^1.3.0",
"nodemon": "^1.17.5",
"opn": "^5.3.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"husky": "^0.14.3",
"jest": "^23.1.0",
"lint-staged": "^7.2.0",
"prettier": "^1.13.5"
}
}