-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 871 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
{
"name": "package",
"version": "1.0.0",
"description": "basic_rest_api",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon ./src/index.ts",
"build": "tsc",
"start": "node ./dist/index.js",
"migrate": "npx prisma migrate dev"
},
"author": "Brezizi.id",
"license": "ISC",
"dependencies": {
"@types/multer": "^1.4.12",
"bcrypt": "^5.1.1",
"express": "^4.20.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"nodemon": "^3.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"devDependencies": {
"@prisma/client": "^5.19.1",
"@types/bcrypt": "^5.0.2",
"@types/express": "^4.17.21",
"@types/joi": "^17.2.2",
"@types/jsonwebtoken": "^9.0.7",
"dotenv": "^16.4.5",
"prisma": "^5.19.1"
}
}