-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 4.04 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 4.04 KB
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
{
"name": "app",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "rm -rf ./public",
"dev": "webpack-dev-server --config webpack/webpack.development.js",
"build": "npm-run-all build-client",
"build-client": "NODE_ENV=production webpack --config webpack/webpack.production.js",
"build-server": "NODE_ENV=production webpack --config webpack/webpack.server.js",
"start": "node ./server.js",
"server": "node ./public/server.js",
"json-server": "node ./json-server/server.js",
"lint:js": "eslint --ext .js src",
"lint:style": "stylelint \"src/**/*.scss\" --syntax scss",
"prettier": "prettier --write src/**/*.{js,scss}",
"test": "jest",
"upd-snapshots": "jest test -u"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-jest": "^24.9.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"eslint": "^5.16.0",
"eslint-bundle": "^1.0.2",
"eslint-config-react-app": "^4.0.0",
"eslint-plugin-flowtype": "^3.6.1",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^1.6.0",
"husky": "^2.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"lint-staged": "^8.1.5",
"prettier": "^1.17.0",
"react-addons-test-utils": "^15.6.2",
"react-hot-loader": "^4.8.4",
"react-test-renderer": "^16.11.0",
"redux-mock-store": "^1.5.3",
"stylelint": "^10.0.1",
"stylelint-config-prettier": "^5.1.0",
"stylelint-config-standard": "^18.3.0",
"webpack-dev-server": "^3.1.4",
"workbox-webpack-plugin": "^4.3.1"
},
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-decorators": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-regenerator": "^7.4.3",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "^7.0.0-beta.49",
"@babel/preset-react": "^7.0.0-beta.49",
"@babel/runtime": "^7.4.3",
"@hot-loader/react-dom": "^16.8.6",
"autoprefixer": "^8.6.1",
"axios": "^0.18.0",
"babel-loader": "^8.0.5",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-module-resolver": "^3.2.0",
"body-parser": "^1.18.3",
"bootstrap": "^4.3.1",
"classnames": "^2.2.6",
"compression": "^1.7.4",
"connected-react-router": "^5.0.1",
"copy-webpack-plugin": "^5.0.3",
"css-loader": "^1.0.0",
"directory-named-webpack-plugin": "^4.0.0",
"express": "^4.17.1",
"file-loader": "^1.1.11",
"history": "^4.7.2",
"hoist-non-react-statics": "^2.5.5",
"html-webpack-plugin": "^3.2.0",
"ignore-loader": "^0.1.2",
"invariant": "^2.2.4",
"json-server": "^0.14.2",
"mini-css-extract-plugin": "^0.7.0",
"node": "^11.14.0",
"node-fetch": "^2.6.0",
"node-sass": "^4.9.2",
"nodemon": "^1.18.11",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"prop-types": "^15.6.2",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-helmet": "^5.2.0",
"react-loadable": "^5.5.0",
"react-popper-tooltip": "^2.8.3",
"react-redux": "^5.0.7",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-router-redux": "^4.0.8",
"react-select": "^2.4.3",
"react-slick": "^0.24.0",
"react-star-ratings": "^2.3.0",
"redux": "^4.0.0",
"redux-form": "^8.1.0",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.0.3",
"serve": "^9.6.0",
"serviceworker-webpack-plugin": "^1.0.1",
"slick-carousel": "^1.8.1",
"style-loader": "^0.21.0",
"styled-components": "^3.3.3",
"svg-sprite-loader": "^4.1.6",
"svgo": "^1.2.2",
"svgo-loader": "^2.2.0",
"terser-webpack-plugin": "^1.3.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.11.1",
"webpack-cli": "^3.0.3",
"webpack-merge": "^4.1.3",
"webpack-node-externals": "^1.7.2"
}
}