-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.21 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.21 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
{
"name": "expenso-be",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"build": "npx prisma generate && tsc",
"start": "nodemon ./dist/index.js",
"init": "npx prisma generate && npx ts-node -- ./data/init.ts",
"dev": "npx prisma generate && nodemon --exec npx ts-node -- ./src/index.ts",
"prod": "npm run build && npm run start",
"clean": "rm -rf node_modules coverage dist .nyc_output"
},
"author": "RahulRST",
"license": "ISC",
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/node": "^20.2.4",
"nodemon": "^2.0.22",
"prisma": "^5.3.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"typescript": "^5.0.4"
},
"nodemonConfig": {
"ext": "js,json,ejs,jpg,png,gif,svg,css,html,ts,env",
"watch": [
"src",
"dist"
]
},
"dependencies": {
"@prisma/client": "^5.3.1",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^7.0.0",
"http-status": "^1.6.2",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"nocache": "^3.0.4"
}
}