-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 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
48
49
50
51
{
"name": "backend-mongo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --forceExit",
"start": "node ./bin/www"
},
"husky": {
"hooks": {
"pre-commit": "eslint ."
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/climatetree/backend-mongo.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/climatetree/backend-mongo/issues"
},
"homepage": "https://github.com/climatetree/backend-mongo#readme",
"dependencies": {
"body-parser": "^1.19.0",
"bson-objectid": "^1.3.0",
"elasticsearch": "^16.7.1",
"express": "^4.17.1",
"grabity": "^1.0.5",
"http-errors": "^1.7.3",
"mongoosastic": "^4.6.0",
"mongoose": "^5.9.9"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"collectCoverage": true
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-node": "^4.0.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"minimist": "^1.2.5",
"mongodb-memory-server": "^6.5.2",
"supertest": "^4.0.2"
}
}