forked from tristen-robinson-ucf/Group22LargeProjectPOOSD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"name": "npm",
"version": "1.0.0",
"description": "The Git for Group 22's Large project for COP4331C (a.k.a. POOSD)<br>",
"main": "Login.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"heroku-postbuild": " NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend",
"start-dev": "nodemon index.js",
"migrate": "npx sequelize-cli db:migrate",
"migrate:reset": "npx sequelize-cli db:migrate:undo:all && npm run migrate",
"test1": "jest --collect-coverage --testTimeout=10000",
"pretest": "@shelf/jest-mongodb"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.6.8",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"emailjs-com": "^3.2.0",
"express": "^4.19.2",
"http-proxy-middleware": "^3.0.0",
"mongodb": "^6.5.0",
"nodejs": "^0.0.0",
"react-color": "^2.19.3",
"react-router-dom": "^6.22.3"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.2.0",
"cross-env": "^7.0.3",
"jest": "^29.7.0",
"supertest": "^6.3.4"
},
"jest": {
"verbose": true,
"preset": "@shelf/jest-mongodb"
}
}