forked from hackforla/food-oasis
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
80 lines (80 loc) · 3.51 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "foodoasis",
"version": "1.0.20",
"author": "Hack for LA",
"description": "Web API Server for Food Oasis",
"main": "server.js",
"scripts": {
"test": "mocha",
"start": "nodemon server.js -ignore './client' ",
"heroku-postbuild": "cd client && npm i && npm run build",
"server": "nodemon server.js",
"client": "npm run start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"lint": "eslint -c .eslintrc.js --ignore-path .eslintignore **/*.{js,jsx}",
"lint:fix": "eslint -c .eslintrc.js --ignore-path .eslintignore --fix **/*.{js,jsx}",
"release-notes": "gren release",
"migrate": "node-pg-migrate -f db/config.js",
"loadtest:local": "loadtest -n 200 -c 20 \"http://localhost:3000/api/stakeholders?name=&categoryIds[]=1&categoryIds[]=9&latitude=34.0544&longitude=-118.2439&distance=5&isInactive=false\" ",
"loadtest:dev": "loadtest -n 200 -c 20 \"https://food-oasis-dev.herokuapp.com/api/stakeholders?name=&categoryIds[]=1&categoryIds[]=9&latitude=34.0544&longitude=-118.2439&distance=5&isInactive=false\" ",
"loadtest:prod": "loadtest -n 200 -c 20 \"https://food-oasis.herokuapp.com/api/stakeholders?name=&categoryIds[]=1&categoryIds[]=9&latitude=34.0544&longitude=-118.2439&distance=5&isInactive=false\" ",
"loadtestdashboard:dev": "loadtest -n 200 -c 20 \"http://food-oasis-dev.herokuapp.com/api/stakeholders/dashboard?name=&latitude=33.8387964&longitude=-118.38124479999998&distance=0&isInactive=either&isAssigned=either&isSubmitted=either&isApproved=either&isClaimed=either&verificationStatusId=0\" ",
"loadtestdashboard:prod": "loadtest -n 200 -c 20 \"http://food-oasis.herokuapp.com/api/stakeholders/dashboard?name=&latitude=33.8387964&longitude=-118.38124479999998&distance=0&isInactive=either&isAssigned=either&isSubmitted=either&isApproved=either&isClaimed=either&verificationStatusId=0\" ",
"loadtesttrivial:prod": "loadtest -n 200 -c 20 \"http://food-oasis.herokuapp.com/api/categories\" ",
"loadtesttrivial:dev": "loadtest -n 200 -c 20 \"http://food-oasis-dev.herokuapp.com/api/categories\" "
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx}": [
"eslint -c .eslintrc.js --ignore-path .eslintignore --fix"
]
},
"license": "GPL-2.0",
"dependencies": {
"@sendgrid/mail": "^6.4.0",
"axios": "^0.19.0",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.3",
"cookie-parser": "^1.4.4",
"csv-stringify": "^5.5.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-pino-logger": "^4.0.0",
"json-2-csv": "^3.5.7",
"jsonwebtoken": "^8.5.1",
"massive": "^6.6.0",
"mocha": "^8.1.3",
"moment": "2.24.0",
"node-pg-migrate": "^5.0.0",
"nodemailer": "^6.3.1",
"nodemon": "^2.0.4",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^8.0.3",
"pino-noir": "^2.2.1",
"uuid": "^3.3.3"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"concurrently": "^5.0.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.0.2",
"eslint-config-standard-react": "^9.2.0",
"eslint-plugin-flowtype": "^4.4.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.6.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "2.0.5"
}
}