-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 941 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 941 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": "NylonEric-SDC",
"version": "1.0.0",
"description": "system design capstone project",
"main": "index.js",
"scripts": {
"test": "jest --watchAll --verbose --detectOpenHandles",
"test-coverage": "jest --coverage --watchAll --detectOpenHandles",
"start": "node ./server/index.js",
"dev": "nodemon ./server/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SDC-Raspberry/NylonEric-SDC.git"
},
"author": "NylonEric",
"license": "ISC",
"bugs": {
"url": "https://github.com/SDC-Raspberry/NylonEric-SDC/issues"
},
"homepage": "https://github.com/SDC-Raspberry/NylonEric-SDC#readme",
"devDependencies": {
"jest": "^27.0.6",
"supertest": "^6.1.4"
},
"dependencies": {
"cors": "^2.8.5",
"csv-parser": "^3.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"pg": "^8.6.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.5"
}
}