-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.33 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
43
44
45
46
47
48
49
{
"name": "automated-land-subdivision-api",
"version": "1.1.0",
"description": "NIRSAL Parcelized Agcs API",
"main": "app.js",
"scripts": {
"test": "jest",
"deploy:heroku": "git push && git push heroku master",
"deploy:open": "git push && git push heroku master && heroku open",
"stable:deploy": "git add --all && git commit -m `stable-commit` && git push && git push heroku master && heroku open",
"start": "node server.js",
"dev": "nodemon server.js",
"start:prod": "NODE_ENV=production nodemon server.js",
"on": "heroku maintenance:on",
"off": "heroku maintenance:off"
},
"author": "Nduka Okpue",
"license": "ISC",
"dependencies": {
"@mapbox/togeojson": "^0.16.0",
"@turf/turf": "^5.1.6",
"axios": "^0.21.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"cloudinary": "^1.27.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^9.0.0",
"jszip": "^3.5.0",
"mongoose": "^5.12.10",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"pug": "^3.0.2",
"request": "^2.88.2",
"shapefile": "^0.6.6",
"validator": "^13.1.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"jest": "^29.5.0",
"nodemon": "^2.0.7"
},
"engines": {
"node": "^18"
}
}