-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.58 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
{
"name": "reactjs-films-homework",
"version": "1.0.0",
"description": "SPA with React, Redux, React Router and Unit Tests",
"main": "index.js",
"scripts": {
"build": "webpack --config=config/webpack/webpack.prod.config.js",
"start": "set NODE_ENV=development&& node ./index.js",
"test": "jest --config=config/jest/jest.config.js --coverage --colors",
"lint": "eslint src index.js --ext .js --ext .jsx && stylelint **/*.scss --formatter verbose",
"prod": "set NODE_ENV=production&& node ./index.js"
},
"husky": {
"hooks": {
"pre-push": "lint-staged"
}
},
"lint-staged": {
"*.(js|jsx|sass)": [
"npm run lint",
"npm run test"
]
},
"author": "Dzmitry",
"license": "ISC",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@hot-loader/react-dom": "^16.8.6",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"brotli-webpack-plugin": "^1.0.0",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^2.1.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jest": "^22.1.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-hooks": "^1.6.0",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.7.1",
"jest-fetch-mock": "^2.1.2",
"jest-transform-stub": "^2.0.0",
"jsdom": "^15.1.1",
"lint-staged": "^8.1.0",
"mini-css-extract-plugin": "^0.4.5",
"node-sass": "^4.12.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"react-test-renderer": "^16.8.6",
"redux-mock-store": "^1.5.3",
"sass-loader": "^7.0.3",
"style-loader": "^0.21.0",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0",
"uglifyjs-webpack-plugin": "^2.0.1",
"url-loader": "^1.1.2",
"webpack-cli": "^3.3.1",
"webpack-merge": "^4.1.3"
},
"dependencies": {
"classnames": "^2.2.6",
"express": "^4.16.4",
"express-static-gzip": "^1.1.3",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-hot-loader": "^4.8.4",
"react-redux": "^7.0.3",
"redux": "^4.0.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"regenerator-runtime": "^0.13.2",
"webpack": "^4.26.1",
"webpack-dev-middleware": "^3.4.0",
"webpack-hot-middleware": "^2.24.3"
}
}