-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
178 lines (178 loc) · 6.5 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
{
"name": "redux-starter",
"version": "2.0.0",
"description": "React 17, React Router 5, Redux, Webpack 5, Express, SSR",
"keywords": [
"react",
"redux",
"webpack",
"jest",
"enzyme",
"css-modules",
"react-router",
"react-router-dom"
],
"homepage": "/",
"repository": {
"type": "git",
"url": "https://github.com/wearepush/push-starter"
},
"license": "MIT",
"scripts": {
"commit": "npx git-cz",
"start": "npm run production",
"dev": "npm-run-all development:client:rendering-service:build:prepare development",
"development": "npm-run-all --parallel development:client:build development:client:rendering-service:build development:client:rendering-service",
"development:client:rendering-service:build:prepare": "universal-webpack --settings ./config/universal-webpack-settings.json prepare",
"development:client:build": "webpack serve --config config/webpack.config.client.development.babel.js",
"development:client:rendering-service:build": "cross-env UNIVERSAL_WEBPACK_CSS_LOADER_V4=true WEBPACK_SERVER=true webpack --mode development --config ./config/webpack.config.server.development.babel.js --watch --color --stats-errors",
"development:client:rendering-service": "nodemon ./services/index.babel.js --watch ./services --watch ./build/server --no-update-notifier",
"production": "npm-run-all production:client:build production:client:rendering-service:build production:services",
"production:client:build": "cross-env NODE_ENV=production webpack --mode production --color --stats-errors --config ./config/webpack.config.client.production.babel.js",
"production:client:rendering-service:build": "cross-env NODE_ENV=production UNIVERSAL_WEBPACK_CSS_LOADER_V4=true WEBPACK_SERVER=true webpack --mode production --color --stats-errors --config ./config/webpack.config.server.production.babel.js",
"production:client:rendering-service": "cross-env NODE_ENV=production node ./services/index.js",
"production:services": "npm run production:client:rendering-service",
"production:build": "npm-run-all production:client:build production:client:rendering-service:build",
"heroku-postbuild": "npm run production:build",
"lint:fix": "cross-env NODE_ENV=production eslint --config .eslintrc.js src --ignore-pattern !.eslintrc.js --fix",
"lint:js": "cross-env NODE_ENV=production eslint --config .eslintrc.js src --ignore-pattern !.eslintrc.js",
"lint:package": "sort-package-json",
"test": "cross-env NODE_ENV=test jest --config jest.config.json",
"test:watch": "cross-env NODE_ENV=test jest --watch --config jest.config.json",
"prepare": "husky install"
},
"lint-staged": {
"*.js": [
"npm run lint:fix"
],
"package.json": [
"npm run lint:package"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browserslist": [
"last 1 version",
"> 1%",
"IE 10"
],
"dependencies": {
"@reduxjs/toolkit": "1.6.2",
"axios": "0.24.0",
"classnames": "2.3.1",
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"core-js": "3.19.1",
"current-device": "0.10.2",
"detect-browser": "5.2.1",
"express": "4.17.1",
"express-winston": "4.2.0",
"history": "5.1.0",
"js-cookie": "3.0.1",
"lodash": "4.17.21",
"lru-memoize": "1.1.0",
"newrelic": "8.6.0",
"prop-types": "15.7.2",
"push-ui": "1.3.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-ga": "3.3.0",
"react-helmet-async": "1.1.2",
"react-redux": "7.2.6",
"react-router": "6.0.2",
"react-router-dom": "6.0.2",
"redux": "4.1.2",
"redux-first-history": "5.0.3",
"redux-form": "8.3.7",
"redux-saga": "1.1.3",
"reselect": "4.1.4",
"serialize-javascript": "6.0.0",
"serve-favicon": "2.5.0",
"universal-webpack": "0.7.0",
"winston": "3.3.3"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/node": "7.16.0",
"@babel/plugin-proposal-class-properties": "7.16.0",
"@babel/plugin-proposal-export-default-from": "7.16.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.16.0",
"@babel/plugin-proposal-optional-chaining": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/preset-react": "7.16.0",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.2",
"@svgr/webpack": "5.5.0",
"@wojtekmaj/enzyme-adapter-react-17": "0.6.5",
"autoprefixer": "10.4.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "27.3.1",
"babel-loader": "8.2.3",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"babel-runtime": "6.26.0",
"browserslist": "4.17.6",
"case-sensitive-paths-webpack-plugin": "2.4.0",
"clean-webpack-plugin": "4.0.0",
"commitizen": "4.2.4",
"cross-env": "7.0.3",
"css-loader": "5.2.6",
"css-minimizer-webpack-plugin": "3.1.1",
"cz-conventional-changelog": "3.3.0",
"dotenv": "10.0.0",
"dotenv-expand": "5.1.0",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.6",
"eslint": "7.27.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-html": "6.2.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "24.3.6",
"eslint-plugin-jsdoc": "35.1.2",
"eslint-plugin-json": "3.0.0",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"git-revision-webpack-plugin": "5.0.0",
"husky": "7.0.4",
"identity-obj-proxy": "3.0.0",
"jest": "27.3.1",
"lint-staged": "11.2.6",
"mini-css-extract-plugin": "2.4.6",
"nock": "13.1.4",
"nodemon": "2.0.15",
"npm-delay": "1.0.4",
"npm-run-all": "4.1.5",
"postcss": "8.3.11",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-loader": "5.3.0",
"postcss-preset-env": "6.7.0",
"prettier": "2.4.1",
"react-dev-utils": "11.0.4",
"react-refresh": "0.10.0",
"redux-mock-store": "1.5.4",
"redux-saga-test-plan": "4.0.3",
"resolve-url-loader": "4.0.0",
"sass": "1.43.4",
"sass-loader": "12.3.0",
"sort-package-json": "1.52.0",
"source-map-support": "0.5.20",
"style-loader": "3.3.1",
"svgo": "2.8.0",
"svgo-loader": "3.0.0",
"url": "0.11.0",
"webpack": "5.61.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.7.1",
"webpack-merge": "5.8.0",
"webpack-subresource-integrity": "^5.0.0-alpha.5"
},
"engines": {
"node": "^16.x"
}
}