-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.19 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
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@gabemule/react-boilerplate",
"version": "1.0.0",
"description": "A Custom React Boilerplate",
"main": "dist/main.js",
"scripts": {
"build:app": "yarn build:lib && webpack --config .webpack/app.prod.js",
"build:lib": "webpack --config .webpack/lib.prod.js",
"build:sb": "yarn build:lib && build-storybook -o storybook-build/",
"dev": "concurrently --kill-others 'yarn dev:lib' 'yarn dev:app'",
"dev:app": "webpack-dev-server --open --hot --config .webpack/app.dev.js",
"dev:lib": "webpack --config .webpack/lib.dev.js --watch --progress",
"dev:sb": "start-storybook -p 6006",
"lint:all": "yarn lint:js && yarn lint:scss",
"lint:js": "eslint src --max-warnings=0",
"lint:scss": "stylelint src/**/*.scss --max-warnings=0",
"fix:all": "yarn fix:js && yarn fix:scss",
"fix:js": "eslint src --fix",
"fix:scss": "stylelint src/**/*.scss --fix",
"stylelint-check": "stylelint-config-prettier-check",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --colors",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.js": [
"yarn lint:js"
],
"src/**/*.scss": [
"yarn lint:scss"
]
},
"author": "Gabriel Mule <gabemule@gmail.com>",
"repository": "https://github.com/gabemule/react-boilerplate",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^6.0.2",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@storybook/addon-actions": "^6.4.0",
"@storybook/addon-essentials": "^6.4.0",
"@storybook/addon-links": "^6.4.0",
"@storybook/builder-webpack5": "^6.4.0",
"@storybook/manager-webpack5": "^6.4.0",
"@storybook/react": "^6.4.0",
"autoprefixer": "^10.4.0",
"babel-core": "^6.26.3",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.3",
"concurrently": "^6.4.0",
"copy-pkg-json-webpack-plugin": "0.0.40",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.2.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"eslint": "^8.4.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.0",
"jest": "^27.3.1",
"lint-staged": "^12.1.2",
"mini-css-extract-plugin": "^2.4.5",
"postcss": "^8.3.11",
"postcss-loader": "^6.2.0",
"postcss-svg": "^3.0.0",
"prettier": "2.5.1",
"rimraf": "^3.0.2",
"sass": "^1.44.0",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.64.2",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
}
}