-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.66 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.66 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
{
"name": "react-boilerplate",
"version": "2.1.1",
"main": "src/index.jsx",
"repository": {
"type": "git",
"url": "https://github.com/deemoding/React-boilerplate"
},
"scripts": {
"start": "webpack serve --color --progress",
"build": "webpack --config webpack.production.config.js",
"test": "npm run lint",
"lint": "eslint --cache --ext .jsx,.js --format=node_modules/eslint-formatter-pretty .",
"lint:fix": "eslint --cache --fix --ext .jsx,.js --format=node_modules/eslint-formatter-pretty .",
"lint:msg": "commitlint -e $1",
"cz": "git-cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"prepare": "husky install"
},
"dependencies": {
"antd": "^4.16.10",
"core-js-pure": "^3.16.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"showdown": "^1.9.1"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.15.0",
"@babel/preset-react": "^7.14.5",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@webpack-cli/serve": "^1.5.1",
"autoprefixer": "^10.3.1",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"clean-webpack-plugin": "^3.0.0",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-formatter-pretty": "^4.1.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-compat": "^3.11.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.2",
"husky": "^7.0.1",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"mini-css-extract-plugin": "^2.2.0",
"opener": "^1.5.2",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"raw-loader": "^4.0.2",
"style-loader": "^3.2.1",
"terser-webpack-plugin": "^5.1.4",
"url-loader": "^4.1.1",
"webpack": "^5.49.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"keywords": [
"es6",
"web app",
"react"
],
"author": "DeemoDing",
"license": "MIT",
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}