-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 KB
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
{
"name": "tmoes-SDC",
"version": "1.0.0",
"description": "System Design Capstone",
"main": "index.js",
"scripts": {
"start": "nodemon ./server/index.js",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SDC-Raspberry/tmoes.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SDC-Raspberry/tmoes/issues"
},
"homepage": "https://github.com/SDC-Raspberry/tmoes#readme",
"devDependencies": {
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"yarn": "^1.22.10"
},
"dependencies": {
"axios": "^0.21.1",
"chai": "^4.3.4",
"csv-parser": "^3.0.0",
"csvtojson": "^2.0.10",
"express": "^4.17.1",
"mocha": "^9.0.2",
"mongodb": "^3.6.8",
"mongoose": "^5.13.2",
"nodemon": "^2.0.12"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": ["./**/*.{js, jsx}"],
"coverageReporters": [
"json",
"html"
],
"verbose": true
}
}