-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "poordash-cli",
"version": "0.1",
"description": "Race to the Bottom!",
"main": "index.js",
"engines": {
"node": "16"
},
"scripts": {
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"start:prod": "node index.js",
"start:dev": "concurrently \"nodemon --ignore 'client/*'\" \"npm run client\"",
"client": "cd client && npm run start",
"install": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run build"
},
"keywords": ["gig", "work", "trashfuture", "tech"],
"author": "HPRVZR",
"license": "ISC",
"devDependencies": {
"concurrently": "^5.0.0",
"eslint": "^7.26.0",
"eslint-plugin-react": "^7.17.0"
},
"dependencies": {
"axios": "^0.19.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint-plugin-flowtype": "^4.5.2",
"eslint-plugin-import": "^2.18.2",
"express": "^4.17.1",
"geolib": "^3.1.0",
"if-env": "^1.0.4",
"jwt-simple": "^0.5.6",
"mongoose": "^5.7.14",
"mongoose-tag-everything": "^2.0.4-a",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"react-loader-spinner": "^3.1.5"
}
}