-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.7 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
86
87
{
"name": "baseSettings",
"version": "1.0.0",
"description": "Just a base environment 4 your new project.",
"private": true,
"browserslist": "last 1 version, not dead, > 0.2%",
"scripts": {
"dev": "cross-env webpack-dev-server --config webpack.dev.js",
"test": "cross-env npx jest --env=jsdom --watch",
"e2e": "cross-env ./node_modules/.bin/cypress open",
"build": "cross-env webpack --config webpack.prod.js",
"profile": "cross-env webpack --profile --config=\"webpack.prod.js\" --json > buildStats/webpack-stats.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Uzwername/base-react-webpack-config.git"
},
"keywords": [
"React",
"Webpack",
"React setup",
"React config",
"React configuration"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Uzwername/base-react-webpack-config/issues"
},
"homepage": "https://github.com/Uzwername/base-react-webpack-config#readme",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.6.3",
"acorn": "^7.1.0",
"ajv": "^6.10.2",
"autoprefixer": "^9.7.1",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-transform-remove-console": "^6.9.4",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.3.6",
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"cypress": "^3.6.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.15.1",
"enzyme-to-json": "^3.4.3",
"eslint": "^6.6.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.16.0",
"faker": "^4.1.0",
"favicons-webpack-plugin": "1.0.2",
"file-loader": "^4.2.0",
"html-webpack-plugin": "^3.2.0",
"image-webpack-loader": "^6.0.0",
"imagemin-webp": "^5.1.0",
"install": "^0.13.0",
"jest": "^24.9.0",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.13.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"react-axe": "^3.3.0",
"react-test-renderer": "^16.11.0",
"regenerator-runtime": "^0.13.3",
"sass-loader": "^8.0.0",
"stylelint": "^11.1.1",
"stylelint-config-recommended": "^3.0.0",
"stylelint-scss": "^3.12.1",
"stylelint-webpack-plugin": "^1.0.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10",
"webpack-dev-server": "^3.9.0",
"webpack-merge": "^4.2.2",
"write-file-webpack-plugin": "^4.5.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"react": "^16.11.0",
"react-dom": "^16.11.0"
}
}