-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.78 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.78 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
57
58
59
60
61
{
"name": "backend-node-sql-starter",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"build": "tsc",
"dev": "node -r ts-node/register --env-file=.env src/server.ts",
"start": "node --env-file=.env dist/server.js",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "jest --detectOpenHandles --forceExit --selectProjects unit",
"test:integration": "jest --detectOpenHandles --runInBand --forceExit --selectProjects integration",
"lint": "eslint",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db-test:migrate": "dotenv -e .env.test -- prisma migrate dev"
},
"keywords": [
"typescript",
"nodejs",
"express",
"jest",
"prisma"
],
"author": "Keyvhinng",
"license": "MIT",
"description": "A backend project using TypeScript, Node.js, Express, Jest and Prisma",
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tsconfig/node20": "^20.1.4",
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/node": "^22.10.2",
"@types/supertest": "^6.0.2",
"@types/winston": "^2.4.4",
"dotenv": "^16.4.7",
"dotenv-cli": "^7.4.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"prisma": "^6.0.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"dependencies": {
"@prisma/client": "^6.0.1",
"bcrypt": "^5.1.1",
"express": "^4.21.2",
"jsonwebtoken": "^9.0.2",
"winston": "^3.17.0",
"zod": "^3.24.1"
}
}