-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 963 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
{
"name": "app-server",
"version": "1.0.0",
"description": "App REST API Server",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha --timeout 10000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gunamata/finn-assessment-level1-app-server.git"
},
"author": "matamagu",
"license": "ISC",
"bugs": {
"url": "https://github.com/gunamata/finn-assessment-level1-app-server/issues"
},
"homepage": "https://github.com/gunamata/finn-assessment-level1-app-server#readme",
"dependencies": {
"chalk": "^3.0.0",
"config": "^1.20.1",
"express": "^4.17.1",
"mongoose": "^5.8.9"
},
"devDependencies": {
"jest": "^25.1.0",
"morgan": "^1.9.1",
"supertest": "^4.0.2",
"chai": "^3.5.0",
"chai-http": "^2.0.1",
"mocha": "^2.4.5"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}