-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
97 lines (97 loc) · 2.79 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "matcha",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/runtime": "^7.8.4",
"@date-io/date-fns": "^1.3.13",
"@material-ui/core": "^4.9.3",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.43",
"@material-ui/pickers": "^3.2.10",
"aws-sdk": "^2.624.0",
"axios": "^0.19.2",
"bcrypt": "^4.0.0",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"concurrently": "^5.1.0",
"date-fns": "^2.9.0",
"dotenv": "^8.2.0",
"eslint-plugin-flowtype": "^4.6.0",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"faker": "^4.1.0",
"file-type": "^12.4.2",
"fs": "0.0.1-security",
"geolib": "^3.2.1",
"google-map-react": "^1.1.6",
"jquery": "^3.4.1",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"multiparty": "^4.2.1",
"node-mailjet": "^3.3.1",
"objects-to-csv": "^1.3.6",
"pg-native": "^3.0.0",
"pg-promise": "^9.3.6",
"prop-types": "^15.7.2",
"query-string": "^6.11.0",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0-beta.16",
"react-dev-utils": "^9.1.0",
"react-dom": "^16.12.0",
"react-easy-crop": "^1.17.1",
"react-google-places-autocomplete": "^1.6.2",
"react-infinite-scroll-component": "^5.0.4",
"react-router-dom": "^5.1.2",
"react-scripts": "^3.4.0",
"react-swipeable-views": "^0.13.9",
"react-toastify": "^5.5.0",
"socket.io": "^2.3.0",
"use-debounce": "^3.3.0",
"uuid-token-generator": "^1.0.0"
},
"scripts": {
"client-install": "npm install",
"start": "npm run dev",
"client": "react-scripts start",
"server": "node ./server/index.js",
"serverlocal": "npx nodemon ./server/index.js --ignore './src/' localhost 3001",
"prodclient": "npx serve -s build",
"build": "react-scripts build",
"dev": "concurrently \"npm run serverlocal\" \"npm run client\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install && npm run build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"babel-plugin-transform-imports": "^2.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"nodemon": "^1.19.4",
"prettier": "^1.19.1"
}
}