-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 893 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 893 Bytes
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": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"nyc": {
"exclude": [
"middlewares"
]
},
"scripts": {
"test": "nyc mocha --timeout=3000 --exit",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/treki-app/server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/treki-app/server/issues"
},
"homepage": "https://github.com/treki-app/server#readme",
"dependencies": {
"body-parser": "^1.18.2",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"cors": "^2.8.4",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"firebase-admin": "^5.12.0",
"lodash": "^4.17.5",
"mocha": "^5.1.1",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"node-gcm": "^0.14.10"
},
"devDependencies": {
"nyc": "^11.7.1"
}
}