-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.7 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
{
"name": "idceats",
"version": "1.0.0",
"description": "A restaurant finder",
"homepage": "/",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"axios": "^0.21.1",
"bcrypt": "^5.0.1",
"connect-flash": "^0.1.1",
"cookie-session": "^1.4.0",
"express": "^4.16.3",
"express-es6-template-engine": "^2.2.3",
"formik": "^2.2.6",
"framer-motion": "^4.0.0",
"lodash": "^4.17.21",
"multer": "^1.4.2",
"mysql": "^2.18.1",
"mysql2": "^2.2.5",
"passport": "^0.4.1",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.3",
"reload": "^3.1.1",
"sequelize": "^6.6.2",
"sequelize-cli": "^6.2.0",
"serialize-javascript": "^5.0.1"
},
"engines": {
"node": "14.x"
},
"scripts": {
"start": "npm run server",
"start:dev": "concurrently \"npm run build:watch\" \"npm run server:watch\"",
"start:test": "npm run build && npm run server",
"server": "node server/server.js",
"server:watch": "nodemon --ignore './src/' server/server.js",
"build": "react-scripts build",
"build:watch": "cra-build-watch",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "11.2.6",
"@testing-library/user-event": "13.1.1",
"concurrently": "6.0.0",
"cra-build-watch": "3.4.0",
"cross-env": "7.0.3",
"nodemon": "^1.19.4"
}
}