-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.44 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.44 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "react-app",
"version": "1.0.0",
"description": "A React Boilerplate Configuration",
"main": "index.js",
"scripts": {
"build": "webpack-cli --mode=production --env=prod",
"start": "webpack-dev-server --mode=development --env=dev",
"test": "jest",
"test:coverage": "jest --coverage"
},
"author": "Boy With Silver Wings <agney@outlook.in>",
"license": "ISC",
"dependencies": {
"dayjs": "^1.8.36",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-hook-form": "^6.8.3",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"react-select": "^3.1.0",
"whatwg-fetch": "^3.4.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-transform-react-constant-elements": "^7.10.4",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/react-hooks": "^5.0.0",
"@testing-library/user-event": "^12.1.5",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"babel-eslint": "10.x",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^6.0.2",
"copy-webpack-plugin": "^6.1.1",
"css-loader": "^7.1.2",
"cssnano": "^7.1.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-flowtype": "4.x",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "6.x",
"eslint-plugin-react": "7.x",
"eslint-plugin-react-hooks": "2.x",
"html-loader": "^1.3.0",
"html-webpack-plugin": "^4.4.1",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-canvas-mock": "^2.2.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.3",
"lint-staged": "^10.4.0",
"mini-css-extract-plugin": "^0.11.2",
"npm-install-webpack-plugin": "^4.0.5",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"postcss-loader": "^4.0.2",
"postcss-preset-env": "^10.2.4",
"prettier": "^2.1.2",
"purify-css": "^1.2.6",
"purifycss-webpack": "^0.7.0",
"react-addons-test-utils": "^15.6.2",
"react-dev-utils": "^12.0.1",
"react-refresh": "^0.9.0",
"react-test-renderer": "^17.0.1",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^4.2.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^5.2.2",
"webpack-merge": "^5.1.4",
"webpack-monitor": "^1.0.14",
"workbox-webpack-plugin": "^7.3.0",
"worker-loader": "^3.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/BoyWithSilverWings/react-app.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}