-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.26 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.26 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": "node-homework",
"version": "1.0.0",
"description": "Code the Dream Node/Express Homework",
"main": "app.js",
"type": "commonjs",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tdd": "./tdd.sh",
"start": "node app.js",
"week3": "nodemon ./week-3-middleware/app",
"lesson9TDD": "NODE_ENV=test jest --testPathPatterns=test/ --verbose --maxWorkers=1 --config ./lesson9TDD/jestConfig/jest.config.js",
"dev": "nodemon app.js"
},
"author": "Code the Dream",
"license": "MIT",
"dependencies": {
"@prisma/client": "^6.12.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"express-xss-sanitizer": "^2.0.1",
"helmet": "^8.1.0",
"http-status-codes": "^2.3.0",
"joi": "^18.0.0",
"jsonwebtoken": "^9.0.3",
"prisma": "^6.12.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@faker-js/faker": "^10.1.0",
"csv-parser": "^3.2.0",
"eslint": "^9.24.0",
"globals": "^16.0.0",
"jest": "^30.0.4",
"node-mocks-http": "^1.17.2",
"nodemon": "^3.1.10",
"pg": "^8.16.3",
"pg-cursor": "^2.13.1",
"prettier": "^3.7.4",
"supertest": "^7.1.3",
"uuid": "^13.0.0"
}
}