-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.37 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.37 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
{
"name": "node-express-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node -r ts-node/register/transpile-only -r tsconfig-paths/register dist/src/app.js",
"dev": "ts-node-dev -r tsconfig-paths/register src/app.ts",
"build": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json && cp -r ./server ./dist/server",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint ."
},
"prisma": {
"seed": "ts-node ./prisma/seed.ts"
},
"author": "Snigdho Dip Howlader",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-validator": "^7.2.0",
"multer": "^1.4.5-lts.1",
"tsconfig-paths": "^4.2.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^5.0.0",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.2",
"nodemon": "^3.1.9",
"prisma": "^6.1.0",
"ts-node-dev": "^2.0.0",
"tsc-alias": "^1.8.10",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2"
}
}