-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 952 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
34
35
36
{
"name": "express-ts-skeleton-app",
"version": "2024.1",
"repository": "[email protected]:HZ-HBO-ICT/ts-skeleton-app.git",
"author": "HZ University of Applied Sciences",
"license": "MIT",
"private": true,
"type": "module",
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"scripts": {
"postinstall": "prisma generate",
"dev": "nodemon --watch src/start.ts",
"start": "tsx src/start.ts"
},
"dependencies": {
"@prisma/client": "^5.12.1",
"dotenv": "^16.0.2",
"express": "^4.17.1",
"nodemon": "^3.1.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.11",
"@typescript-eslint/parser": "^6.11",
"eslint": "^8.53.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"prisma": "^5.12.1",
"tsx": "^4.15.7",
"typescript": "5.2"
}
}