-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.41 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "task-manager-api",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"init": "npm install && npm run prisma:generate && npm run prisma:migrate",
"build": "tsc -p .",
"start": "node dist/app.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/app.ts",
"prod": "npm run build && npm run start",
"prisma": "prisma",
"prisma:studio": "prisma studio",
"prisma:generate": "npm run merge:models && prisma generate",
"prisma:migrate": "prisma migrate dev",
"merge:models": "node prisma/mergeModels.js",
"lint": "eslint 'src/**/*.ts'",
"lint:fix": "eslint 'src/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts'",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^5.21.1",
"dotenv": "^16.4.5",
"express": "^4.21.1"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/dotenv": "^6.1.1",
"@types/express": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"prisma": "^5.21.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.11.0"
}
}