-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.43 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.43 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
47
48
49
50
51
52
{
"name": "park-and-ride-delhi-ncr",
"version": "1.0.0",
"description": "Real-time Delhi NCR transit tracking and parking availability web application",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"dev:watch": "nodemon --watch . --ignore client/ --ignore node_modules/ server.js",
"dev:debug": "nodemon --inspect server.js",
"dev:client": "cd client && npm run dev",
"dev:full": "concurrently \"npm run dev:watch\" \"npm run dev:client\"",
"build": "cd client && npm run build",
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "eslint . --ignore-path .gitignore --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"delhi",
"metro",
"transit",
"parking",
"real-time",
"react",
"nodejs"
],
"author": "Bikund Kumar",
"license": "MIT",
"dependencies": {
"@faker-js/faker": "^10.1.0",
"axios": "^1.13.2",
"cloudinary": "^2.8.0",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"firebase-admin": "^13.5.0",
"helmet": "^8.1.0",
"multer": "^2.0.2",
"serialport": "^13.0.0",
"socket.io": "^4.8.1",
"validator": "^13.15.20"
},
"devDependencies": {
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"nodemon": "^3.1.10",
"winston": "^3.18.3"
}
}