-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.36 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.36 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
{
"name": "oc-p10",
"version": "1.0.0",
"description": "API REST avec authentification utilisateur - Node.js + Express + TypeScript + Prisma",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "nodemon src/index.ts",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:migrate": "prisma migrate dev",
"db:studio": "prisma studio",
"seed": "ts-node scripts/seed.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nodejs",
"express",
"typescript",
"prisma",
"jwt",
"authentication"
],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.19.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^4.18.2",
"helmet": "^7.1.0",
"jsonwebtoken": "9.0.3",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.5",
"@types/morgan": "^1.9.9",
"@types/node": "^20.10.5",
"nodemon": "^3.0.2",
"prisma": "^6.19.3",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}