-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.19 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.19 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
{
"name": "react-env",
"version": "1.0.0",
"private": true,
"scripts": {
"clean": "rimraf ./build/*",
"start": "webpack-dev-server --mode development --config ./config/webpack/dev.js",
"build": "npm run clean && webpack --mode production --config ./config/webpack/prod.js",
"lint": "eslint ./src/ --report-unused-disable-directives",
"test": "node scripts/test.js"
},
"keywords": [
"react",
"react environment",
"setup"
],
"author": "Rolf Rodrigo Krueger",
"license": "MIT",
"dependencies": {
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@testing-library/react": "^8.0.7",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"babel-plugin-styled-components": "^1.10.6",
"compression-webpack-plugin": "^3.0.0",
"css-loader": "^3.1.0",
"dotenv": "^8.0.0",
"editorconfig": "^0.15.3",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.14.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^1.6.1",
"fs-extra": "^8.1.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.8.0",
"jest-watch-typeahead": "^0.3.1",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.1",
"prettier": "^1.18.2",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.38.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
}
}