-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.52 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.52 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
47
48
49
50
51
52
53
54
55
56
{
"name": "task-store",
"version": "1.0.0",
"description": "Code the Dream task store",
"main": "app.js",
"type": "commonjs",
"engines": {
"node": "22.x",
"npm": "10.x"
},
"scripts": {
"test": "npx cross-env NODE_ENV=test jest --testPathPatterns=test/ --verbose --maxWorkers=1",
"dev": "nodemon app.js",
"start": "node app",
"lint": "eslint .",
"build": "npx prisma migrate deploy",
"devbuild": "npx prisma migrate dev",
"testbuild": "DATABASE_URL=postgresql://john@localhost/tasklisttest?host=/var/run/postgresql npx prisma migrate dev"
},
"author": "Code The Dream",
"license": "MIT",
"dependencies": {
"@prisma/client": "^6.10.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.1",
"express-xss-sanitizer": "^2.0.0",
"google-auth-library": "^10.5.0",
"helmet": "^8.1.0",
"http-status-codes": "^2.3.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"prisma": "^6.11.1",
"swagger-ui-express": "^5.0.1",
"yamljs": "^0.3.0"
},
"devDependencies": {
"@eslint/js": "^9.24.0",
"@faker-js/faker": "^10.1.0",
"cookie": "^1.0.2",
"cross-env": "^7.0.3",
"csv-parser": "^3.2.0",
"eslint": "^9.24.0",
"eslint-plugin-jest": "^29.0.1",
"globals": "^16.0.0",
"jest": "^30.0.3",
"node-mocks-http": "^1.17.2",
"nodemon": "^3.1.10",
"pg": "^8.16.2",
"pg-cursor": "^2.15.2",
"prettier": "^3.6.1",
"supertest": "^7.1.1"
}
}