-
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.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 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": "prakarsh-backend-22",
"version": "1.0.0",
"description": "Backend for prakarsh 2022",
"main": "index.js",
"author": "thevrajshah",
"license": "MIT",
"private": true,
"scripts": {
"watch": "tsc -w",
"lint": "tslint -c tslint.json -p tsconfig.json --fix",
"dev": "nodemon dist/server.js",
"start": "node dist/server.js",
"seed": "node dist/seed.js"
},
"dependencies": {
"@prisma/client": "^3.11.0",
"axios": "^0.26.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"google-auth-library": "^7.14.1",
"jsonwebtoken": "^8.5.1",
"node-google-login": "^1.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prisma": "^3.11.0",
"ts-node": "^10.7.0",
"tslint": "^6.1.3",
"typescript": "^4.6.2"
}
}