-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.68 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.68 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
{
"name": "project_title",
"version": "2.3.4",
"boilerplateVersion": "1.0.0",
"private": true,
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --modulePaths=src",
"test:lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"presetup": "npm install cli-spinner prompt colors --no-optional",
"setup": "node config/setup/setup.js",
"preinstall": "cp .env.sample .env",
"release": "release-it -c config/.release-it.json"
},
"dependencies": {
"@adaptagency/fe_tools": "^1.6.4",
"@babel/preset-env": "^7.6.2",
"@loadable/component": "^5.10.3",
"@svgr/webpack": "^4.3.3",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.8",
"@types/react": "16.9.3",
"@types/react-dom": "16.9.1",
"@types/react-loadable": "^5.5.1",
"@types/react-redux": "^7.1.4",
"autoprefixer": "^9.6.1",
"circular-dependency-plugin": "^5.2.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^3.0.0",
"critters-webpack-plugin": "^2.4.0",
"css-loader": "^3.2.0",
"customize-cra": "^0.8.0",
"eslint-config-prettier": "^6.3.0",
"extract-css-chunks-webpack-plugin": "^4.6.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.12.0",
"postcss-calc": "^7.0.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-inline-svg": "^4.1.0",
"postcss-loader": "^3.0.0",
"prerender-loader": "^1.3.0",
"react": "16.10.1",
"react-app-rewired": "^2.1.3",
"react-dom": "16.10.1",
"react-scripts": "^3.1.2",
"sass-loader": "^8.0.0",
"sass-resources-loader": "^2.0.1",
"style-loader": "^1.0.0",
"typescript": "3.6.3",
"webpack": "^4.41.0"
},
"devDependencies": {
"@hot-loader/react-dom": "16.9.0",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"eslint": "^6.5.0",
"eslint-config-prettier": "^6.3.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-json": "^1.4.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.14.3",
"husky": "^3.0.7",
"react-app-rewire-eslint": "^0.2.3",
"react-app-rewire-hot-loader": "^2.0.1",
"react-hot-loader": "^4.12.14",
"release-it": "^12.4.1",
"webpack-bundle-analyzer": "^3.5.2",
"webpackbar": "^4.0.0"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
"> 1%",
"last 2 versions",
"IE 11"
],
"husky": {
"hooks": {
"pre-push": "yarn test:lint"
}
},
"config-overrides-path": "config/config-overrides"
}