-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.46 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.46 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
{
"name": "express-crud-admiral",
"version": "0.0.1",
"description": "Example of CRUD with Express and Admiral Panel",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc",
"prisma:generate": "prisma generate",
"prisma:seed": "ts-node src/prisma/seed.ts",
"prisma:migrate": "prisma migrate"
},
"dependencies": {
"@prisma/client": "4.6.1",
"cors": "^2.8.5",
"express": "^5.0.0-beta.1",
"express-validator": "^6.14.2",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.6.0",
"sqlite": "^4.2.1",
"zod": "^3.20.2"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "4.17.14",
"@types/http-errors": "^2.0.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/multer": "^1.4.7",
"@types/node": "18.11.9",
"nodemon": "^2.0.20",
"prisma": "4.6.1",
"ts-node": "^10.9.1",
"typescript": "4.9.3"
},
"prisma": {
"seed": "ts-node src/prisma/seed.ts",
"schema": "src/prisma/schema.prisma"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}