-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.87 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
{
"name": "react-app-template",
"version": "0.0.1",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --mode development",
"build": "NODE_ENV=production webpack --mode production",
"lint": "eslint --fix .",
"pretest": "npm run lint",
"test": "jest --config .jest.config.js",
"eslint-check": "eslint --print-config . | eslint-config-prettier-check"
},
"husky": {
"hooks": {
"pre-commit": "npm test"
}
},
"devDependencies": {
"@babel/cli": "7.1.0",
"@babel/core": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.3.0",
"@babel/preset-env": "7.3.1",
"@babel/preset-react": "7.0.0",
"babel-eslint": "10.0.1",
"babel-jest": "24.0.0",
"babel-loader": "8.0.5",
"clean-webpack-plugin": "1.0.1",
"copy-webpack-plugin": "5.1.1",
"css-loader": "2.1.0",
"eslint": "5.12.1",
"eslint-config-airbnb": "17.1.0",
"eslint-import-resolver-webpack": "0.11.0",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jest": "22.2.1",
"eslint-plugin-jsx-a11y": "6.2.0",
"eslint-plugin-react": "7.12.4",
"file-loader": "3.0.1",
"html-webpack-plugin": "3.2.0",
"husky": "1.3.1",
"jest": "24.0.0",
"mini-css-extract-plugin": "0.5.0",
"node-sass": "4.12.0",
"prettier": "1.16.1",
"prettier-eslint": "8.8.2",
"react-hot-loader": "4.6.3",
"react-test-renderer": "16.7.0",
"resolve-url-loader": "3.0.0",
"sass-loader": "7.1.0",
"style-loader": "0.23.1",
"url-loader": "1.1.2",
"webpack": "4.29.0",
"webpack-cli": "3.2.1",
"webpack-dev-server": "3.1.14"
},
"dependencies": {
"prop-types": "15.6.2",
"react": "16.12.0",
"react-dom": "16.12.0",
"react-floater": "0.6.3",
"react-html-parser": "2.0.2",
"react-router": "4.3.1",
"react-router-dom": "4.3.1",
"react-svg": "7.2.6"
}
}