-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1012 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1012 Bytes
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
{
"name": "env_api",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"build": "tsc",
"generate": "prisma generate",
"start": "node build/src/index.js",
"dev": "nodemon --watch './**/*.ts' --exec 'ts-node' src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "ertugrul013",
"dependencies": {
"@prisma/client": "4.8.1",
"bcryptjs": "^2.4.3",
"cls-rtracer": "^2.6.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"jsonwebtoken": "9.0.0",
"pino": "^8.7.0",
"pino-pretty": "^9.1.1"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "4",
"@types/jsonwebtoken": "9.0.1",
"@types/node": "18",
"nodemon": "^2.0.20",
"prisma": "4.8.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^4.8.4"
}
}