-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.28 KB
/
package.json
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
{
"name": "ktf-backend",
"version": "0.0.1",
"main": "dist/server.js",
"author": "Krishna Kumar",
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development concurrently -r \"npx tsc --watch\" \"tsc-alias -w\" \"nodemon --delay 500ms --signal SIGTERM -r dotenv/config -q dist/server.js\"",
"start": "cross-env NODE_ENV=production node dist/server.js",
"preview": "yarn build && cross-env NODE_ENV=production node -r dotenv/config dist/server.js",
"build": "npx tsc && tsc-alias",
"format": "prettier --write \"**/*.{ts,js,md,json}\"",
"clean": "rimraf dist node_modules"
},
"dependencies": {
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"express": "^4.18.1",
"firebase-admin": "^10.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.3.3",
"morgan": "^1.10.0",
"qrcode": "^1.5.0",
"razorpay": "^2.8.1",
"uid": "^2.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.36",
"@types/qrcode": "^1.4.2",
"concurrently": "^7.2.1",
"dotenv": "^16.0.1",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"tsc-alias": "^1.6.7",
"typescript": "^4.6.4"
}
}