-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 2.83 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
98
99
100
101
102
103
104
105
106
{
"name": "dscus1",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/core": "^10.0.35",
"@emotion/styled": "^10.0.27",
"antd": "^4.6.6",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cloudinary": "^1.22.0",
"connect-pg-simple": "^6.2.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"emotion-theming": "^10.0.27",
"express": "^4.17.1",
"express-session": "^1.17.1",
"express-validator": "^6.6.0",
"immer": "^7.0.5",
"mime": "^2.4.6",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"path": "^0.12.7",
"pg": "^8.3.0",
"pg-hstore": "^2.3.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-moment": "^1.1.1",
"react-redux": "^7.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^5.0.1",
"react-toastify": "^6.0.8",
"redux": "^4.0.5",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"socket.io": "^2.4.1",
"socket.io-client": "^2.3.1",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"babel-preset-react-app": "^10.0.1",
"concurrently": "^5.2.0",
"core-js": "^3.22.2",
"css-loader": "^6.7.1",
"cssnano": "^5.1.7",
"enzyme": "^3.11.0",
"eslint": "^8.14.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.29.4",
"fetch-mock": "^9.11.0",
"html-webpack-plugin": "^5.5.0",
"http-proxy-middleware": "^2.0.6",
"http-server": "^14.1.0",
"jest": "^28.0.1",
"json-server": "^0.17.0",
"mini-css-extract-plugin": "^2.6.0",
"node-fetch": "^3.2.3",
"node-sass": "^7.0.1",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"postcss-loader": "^6.2.1",
"redux-immutable-state-invariant": "^2.1.0",
"redux-mock-store": "^1.5.4",
"rimraf": "^3.0.2",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"st": "node --optimize_for_size --max_old_space_size=460 index.js",
"backend": "nodemon index.js",
"frontend": "npm run start --prefix ../",
"dev": "concurrently \"npm run backend\" \"npm run frontend\"",
"heroku-postbuild": "npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}