-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.45 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.45 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
53
{
"name": "atlevtrakr",
"version": "0.1.0",
"description": "Eviction data visualization and mapping portal",
"main": "server.js",
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node server.js && npm run client",
"start:dev": "nodemon server.js | npm run client",
"client": "cd client && npm run start",
"seed": "node seed/seedDB.js",
"install": "cd client && npm install",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"engines": {
"node": "20.10.0",
"npm": "10.2.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spinozist/ARC-Eviction-Tracker"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/spinozist/ARC-Eviction-Tracker"
},
"homepage": "https://github.com/spinozist/ARC-Eviction-Tracker#readme",
"dependencies": {
"@vitejs/plugin-react": "^4.2.1",
"axios": "^1.6.7",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.20.0",
"compression": "^1.7.4",
"concurrently": "^8.2.2",
"cookie-parser": "^1.4.6",
"csvtojson": "^2.0.10",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-flash": "0.0.2",
"express-session": "^1.17.3",
"hex-generator": "^1.0.1",
"if-env": "^1.0.4",
"json2csv": "^5.0.7",
"JSONStream": "^1.3.5",
"moment": "^2.29.3",
"mongoose": "^8.2.0",
"morgan": "^1.10.0",
"node-cron": "^3.0.0",
"path": "^0.12.7",
"vite": "^5.1.4"
}
}