This repository has been archived by the owner on Oct 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.43 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": "react-boilerplate",
"version": "0.0.3",
"repository": "https://github.com/halitogunc/react-boilerplate",
"description": "A boilerplate for setting up your react project in seconds with hot module reload, webpack, jest, eslint, prettier and husky support.",
"author": "Halit Ogunc <halitogunc@gmail.com>",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/preset-env": "^7.7.6",
"@babel/preset-react": "^7.7.4",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^6.0.3",
"css-loader": "~3.3.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^2.4.0",
"file-loader": "~5.0.2",
"html-loader": "~0.5.5",
"html-webpack-plugin": "~3.2.0",
"husky": "~3.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^24.9.0",
"lint-staged": "~9.5.0",
"prettier": "^1.19.1",
"style-loader": "~1.0.1",
"url-loader": "~3.0.0",
"webpack": "~4.41.6",
"webpack-bundle-analyzer": "~3.6.0",
"webpack-cli": "~3.3.10",
"webpack-dev-server": "~3.9.0"
},
"dependencies": {
"@hot-loader/react-dom": "^16.11.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-hot-loader": "^4.12.18"
},
"engines": {
"node": ">=10.13.0"
},
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server",
"start:profiling": "yarn start --profiling",
"build": "cross-env NODE_ENV=production webpack",
"build:profiling": "yarn build --profiling",
"test": "jest",
"test:coverage": "yarn test --coverage",
"lint": "eslint --ext .js,.jsx src/",
"lint:fix": "eslint --ext .js,.jsx src/ --fix",
"precommit": "lint-staged"
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"lint-staged": {
"*.{js,jsx}": [
"yarn --silent lint:fix",
"git add"
]
},
"keywords": [
"react",
"webpack",
"babel",
"prettier",
"eslint",
"boilerplate",
"css",
"javascript",
"front-end",
"node"
]
}