-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
147 lines (147 loc) · 5.41 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "sozzy",
"version": "1.0.0",
"description": "Complete Boilerplate project",
"main": "dist/index.js",
"scripts": {
"dev": "cross-env WEBPACK_CONFIG=client-dev,server-dev webpack --colors",
"clean": "rimraf dist exported/modules.json exported/webpack.stats.json",
"dev:server": "cross-env NODE_ENV=production WEBPACK_CONFIG=server-dev webpack --colors",
"dev:client": "cross-env NODE_ENV=production WEBPACK_CONFIG=client-dev webpack --colors",
"prod:build-server": "NODE_ENV=production cross-env WEBPACK_CONFIG=server-prod webpack --mode=production --env production --colors",
"prod:build-client": "NODE_ENV=production cross-env WEBPACK_CONFIG=client-prod webpack --mode=production --env production --colors",
"prod:build": "npm-run-all clean prod:build-client prod:build-server",
"prod:run": "node dist/server.js",
"prod": "npm-run-all clean prod:build-client prod:build-server prod:run"
},
"author": "Konrad Jarosinski",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.7.0",
"@babel/runtime-corejs2": "^7.7.4",
"@loadable/babel-plugin": "^5.10.3",
"@loadable/component": "^5.10.3",
"@loadable/server": "^5.10.3",
"@loadable/webpack-plugin": "^5.7.1",
"@types/axios": "^0.14.0",
"@types/react": "^16.7.17",
"@types/react-dom": "^16.0.11",
"@types/react-loadable": "^5.4.3",
"@types/reactstrap": "^6.4.4",
"axios": "^0.21.1",
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"compression": "^1.7.0",
"concurrently": "^3.5.0",
"express-http-proxy": "^1.0.6",
"formik": "^1.5.8",
"intl": "^1.2.5",
"intl-locales-supported": "^1.8.4",
"koa": "^2.5.2",
"koa-better-http-proxy": "^0.2.4",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.1.0",
"koa-route": "^3.2.0",
"koa-router": "^7.4.0",
"koa-session": "^5.8.2",
"koa-static": "^5.0.0",
"lodash": "^4.17.15",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-helmet": "^5.2.0",
"react-intl": "^2.4.0",
"react-loadable": "^5.5.0",
"react-redux": "^5.0.6",
"react-router": "^4.3.1",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-toastify": "^5.3.2",
"reactstrap": "^6.3.1",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"redux-saga-thunk": "^0.7.1",
"regenerator-runtime": "^0.13.1",
"rimraf": "^2.6.2",
"serialize-javascript": "^3.1.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.7.4",
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-syntax-class-properties": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-async-to-generator": "^7.7.4",
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"@babel/preset-react": "^7.7.4",
"@babel/preset-stage-0": "^7.0.0",
"@types/loadable__component": "^5.10.0",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"awesome-typescript-loader": "^5.2.1",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.6",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-imports": "^1.5.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"brotli-webpack-plugin": "^1.0.0",
"chunk-manifest-webpack-plugin": "^1.1.2",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-compat": "^2.6.3",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^2.0.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.9.2",
"nodemon": "^1.19.2",
"nodemon-webpack-plugin": "^4.1.1",
"npm-run-all": "^4.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.21.0",
"ts-loader": "^5.3.1",
"typescript": "^3.2.2",
"webpack": "^4.15.1",
"webpack-bundle-analyzer": "^3.4.1",
"webpack-chunk-hash": "^0.6.0",
"webpack-cli": "^3.0.8",
"webpack-config": "^7.5.0",
"webpack-dev-server": "^3.8.0",
"webpack-hashed-chunkids": "^1.0.8",
"webpack-manifest-plugin": "^2.0.4",
"webpack-merge": "^4.1.0",
"webpack-node-externals": "^1.6.0",
"webpackbar": "^3.1.3",
"zopfli-webpack-plugin": "^0.1.0"
}
}