-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.01 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "huru-api",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"start": "tsc && ts-node ./dist/app.js",
"dev": "tsc && ts-node-dev ./dist/app.js",
"debug": "export DEBUG=* && npm run start",
"test": "echo \"Error: no test specified\" && exit 1",
"prisma:migrate": "npx prisma migrate dev --name init",
"prisma:studio": "npx prisma studio",
"prisma:generate": "npx prisma generate"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^3.10.0",
"cors": "^2.8.5",
"debug": "^4.3.3",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"morgan": "^1.10.0",
"winston": "^3.6.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/debug": "^4.1.7",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"prisma": "^3.10.0",
"source-map-support": "^0.5.21",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"typescript": "^4.5.5"
}
}