This repository has been archived by the owner on Nov 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 2.69 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
{
"name": "react-starter",
"version": "2.0.0",
"description": "React webapp starter",
"main": "index.js",
"dependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"bfj": "^7.0.2",
"core-js": "^3.11.0",
"css-loader": "5.2.4",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"file-loader": "6.2.0",
"fs-extra": "^9.1.0",
"html-webpack-plugin": "4.5.1",
"mini-css-extract-plugin": "1.5.0",
"pnp-webpack-plugin": "1.6.4",
"react": "^17.0.2",
"react-dev-utils": "^11.0.4",
"react-dom": "^17.0.2",
"react-refresh": "^0.10.0",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"style-loader": "2.0.0",
"styled-components": "^5.2.3",
"styled-reset": "^4.3.4",
"terser-webpack-plugin": "4.2.3",
"url-loader": "4.1.1",
"webpack": "4.44.2",
"webpack-dev-server": "3.11.2",
"webpack-manifest-plugin": "3.1.1",
"workbox-webpack-plugin": "6.1.5"
},
"devDependencies": {
"@babel/core": "^7.13.16",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"auto-changelog": "^2.2.1",
"babel-eslint": "10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"gh-pages": "^3.1.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zerosoul/react-starter.git"
},
"keywords": [
"template",
"react",
"frontend",
"tool",
"amazing"
],
"author": "Tristan",
"license": "ISC",
"bugs": {
"url": "https://github.com/zerosoul/react-starter/issues"
},
"homepage": "http://works.yangerxiao.com/react-starter",
"engines": {
"node": ">=10.0.0",
"npm": ">=6.0.0"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"deploy": "npm run build && gh-pages -d build",
"changelog": "auto-changelog -p --release-summary -l false --template changelog.template.hbs && git add CHANGELOG.md",
"prepare": "husky install"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}