generated from Code-the-Dream-School/react-node-practicum-back-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 862 Bytes
/
package.json
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
{
"name": "gg-practicum-team-5-back",
"version": "1.0.0",
"description": "Back-End Repo for Team 5 of Grackle/Giraffe",
"main": "app.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test:puppeteer": "NODE_ENV=test mocha src/tests/*.js --grep @puppeteer --exit",
"test:chai": "NODE_ENV=test mocha src/tests/*.js --grep @chai --exit"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/chai": "^4.3.16",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-favicon": "^2.0.4",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.0.1",
"morgan": "^1.10.0",
"swagger-ui-express": "^5.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"factory-bot": "^6.3.1",
"nodemon": "^2.0.21"
}
}