-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 2.88 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
{
"name": "react-ssr",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "env-cmd -f .env.development node scripts/start.js",
"build": "env-cmd -f .env node scripts/build.js",
"start": "nodemon dist/server.js",
"pm2:start": "pm2 start pm2.config.js --env production",
"linter": "eslint src",
"bundlesize": "bundlesize",
"precommit": "eslint src --quiet"
},
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"express-manifest-helpers": "^0.6.0",
"i18next": "^19.3.4",
"i18next-express-middleware": "^1.9.1",
"js-cookie": "^2.2.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-i18next": "^11.3.4",
"react-redux": "^7.2.0",
"react-router-dom": "^5.1.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"serialize-javascript": "^3.0.0",
"styled-components": "^5.1.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-transform-modules-commonjs": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/register": "^7.9.0",
"@babel/runtime": "^7.9.2",
"autoprefixer": "^9.7.5",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"bundlesize": "^0.18.0",
"chalk": "^4.0.0",
"css-hot-loader": "^1.4.4",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-fortech-react": "^1.0.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"file-loader": "^6.0.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"nodemon": "^2.0.2",
"postcss-loader": "^3.0.0",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"webpack": "^4.42.1",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-dev-server": "^3.10.3",
"webpack-hot-middleware": "^2.25.0",
"webpack-manifest-plugin": "^2.2.0",
"webpack-node-externals": "^1.7.2",
"write-file-webpack-plugin": "^4.5.1"
},
"browserslist": [
"> 1%",
"ie >= 8",
"edge >= 15",
"ie_mob >= 10",
"ff >= 45",
"chrome >= 45",
"safari >= 7",
"opera >= 23",
"ios >= 7",
"android >= 4",
"bb >= 10"
],
"bundlesize": [
{
"path": "./dist/js/app.bundle.js",
"maxSize": "170 kB"
},
{
"path": "./dist/js/lib.bundle.js",
"maxSize": "110 kB"
}
],
"author": "",
"license": "MIT"
}