-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 810 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 810 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
{
"name": "milo-sdc",
"version": "1.0.0",
"description": "yeah you know me",
"main": "index.js",
"scripts": {
"start": "nodemon ./server/server.js",
"test": "mocha ./__tests__",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SDC-Raspberry/milo-sdc.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SDC-Raspberry/milo-sdc/issues"
},
"homepage": "https://github.com/SDC-Raspberry/milo-sdc#readme",
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.0.2",
"nyc": "^15.1.0"
},
"dependencies": {
"axios": "^0.21.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongoose": "^5.13.2",
"nodemon": "^2.0.12",
"redis": "^3.1.2"
}
}