forked from ovasylenko/skillcrucial-react-redux-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·154 lines (154 loc) · 5.25 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
{
"name": "landing-page-small-apps",
"version": "0.0.1",
"description": "landing-page-small-apps",
"main": "index.js",
"engines": {
"node": "12.x"
},
"scripts": {
"dev": "webpack-dev-server --mode development --config ./webpack.development.config.js --hot --open --disable-host-check",
"dev:server": "webpack --watch --config webpack.development.config.js",
"start:dev": "webpack-dev-server --mode development --config ./webpack.development.config.js --hot --open",
"start": "NODE_ENV=production node start.js",
"clean": "rimraf dist",
"production": "cross-env npm run clean && webpack --config webpack.production.config.js --progress --profile --colors",
"lint": "eslint ./client/**/**.js ./server/**/**.js ",
"lint:server": "eslint ./server/**/**.js",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"next:build": "next",
"watch:server": "nodemon start.js --ignore \"*.hot-update.json\" --ignore \"js/bundle.js\" --ignore \"css/main.css\" --watch server --watch client --exec \"npm run lint:server && node\"",
"build:prod": " webpack --config webpack.production.frontend.config.js --progress --profile --colors",
"heroku-postbuild": " webpack --config webpack.production.frontend.config.js --progress --profile --colors"
},
"author": "",
"license": "MIT",
"jest": {
"setupFiles": [
"<rootDir>/config/jest/shim.js"
],
"collectCoverageFrom": [
"app/**/*.{js,jsx,ts,tsx}"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/config/jest/assetsTransformer.js",
"\\.(css|less)$": "<rootDir>/config/jest/assetsTransformer.js"
},
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
],
"transform": {
"\\.js$": "babel-jest"
}
},
"dependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-export-default-from": "^7.5.2",
"@babel/plugin-proposal-export-namespace-from": "^7.5.2",
"@babel/plugin-proposal-function-sent": "^7.5.0",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-throw-expressions": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.6.3",
"@babel/preset-stage-3": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@babel/register": "^7.6.2",
"@babel/runtime": "^7.6.3",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-css-modules-transform": "^1.6.2",
"babel-plugin-emotion": "^10.0.21",
"babel-polyfill": "^6.26.0",
"babel-preset-react-boilerplate": "1.1.1",
"babel-preset-react-hmre": "1.1.1",
"body-parser": "^1.19.0",
"classnames": "^2.2.6",
"connected-react-router": "^6.5.2",
"cookie-parser": "^1.4.4",
"core-js": "^3.3.3",
"cors": "^2.8.5",
"cross-env": "^5.2.0",
"d3": "^5.7.0",
"dotenv": "^8.0.0",
"es6-promise": "^4.2.6",
"express": "^4.16.4",
"faker": "^4.1.0",
"git-revision-webpack-plugin": "^3.0.3",
"history": "^4.7.2",
"isomorphic-fetch": "^2.2.1",
"next": "^9.1.1",
"openssl": "^1.1.0",
"prop-types": "^15.7.2",
"raf": "^3.4.1",
"raw-loader": "^3.1.0",
"react": "^16.11.0",
"react-app-polyfill": "^1.0.4",
"react-dom": "^16.11.0",
"react-helmet": "^5.2.1",
"react-hot-loader": "^4.12.15",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"request": "^2.88.0",
"sockjs": "^0.3.19",
"sockjs-client": "^1.4.0",
"string-replace-webpack-plugin": "^0.1.3",
"uuid": "^3.3.3"
},
"devDependencies": {
"copy-webpack-plugin": "^5.0.4",
"css-loader": "3.2.0",
"eslint": "^6.5.1",
"eslint-config-airbnb": "18.0.1",
"eslint-loader": "3.0.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "^2.2.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "4.2.0",
"html-webpack-plugin": "3.2.0",
"husky": "3.0.9",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"node-hot-loader": "^1.17.6",
"node-sass": "^4.12.0",
"nodemon": "^1.19.4",
"react-addons-test-utils": "^15.6.2",
"react-test-renderer": "16.11.0",
"regenerator-runtime": "^0.13.3",
"rimraf": "3.0.0",
"sass-loader": "8.0.0",
"style-loader": "1.0.0",
"url-loader": "2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0",
"webpack-shell-plugin": "^0.5.0"
},
"nodemonConfig": {
"ignore": [
"*.hot-update.json"
]
},
"husky": {
"hooks": {
"pre-commit": "cross-env npm run lint && npm test",
"pre-push": "cross-env npm run lint && npm test"
}
}
}