-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.21 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
{
"name": "express-api-base",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "env NODE_ENV=test mocha --timeout 10000",
"start": "env NODE_ENV=development nodemon src/index.js",
"pretty": "prettier --check \"src/**/*.js\" --write"
},
"author": "",
"license": "ISC",
"nodemonConfig": {
"ignore": [
"tests/test_data.json",
"tests/__test_data/*.json",
"tests/__test_data/backup/*.json"
]
},
"config": {
"mongodbMemoryServer": {
"version": "latest"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write"
]
},
"devDependencies": {
"bson": "^4.0.4",
"husky": "^4.2.5",
"json2mongo": "^2.0.0",
"lint-staged": "^10.2.10",
"mongo-unit": "^2.0.1",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"ps-node": "^0.1.6"
},
"dependencies": {
"app-root-path": "^3.0.0",
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"express-validator": "^6.5.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.18",
"morgan": "^1.10.0",
"winston": "^3.2.1"
}
}