-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.62 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.62 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
{
"name": "@clearc2/c2-react-config",
"version": "8.0.2",
"main": "index.js",
"author": "David Adams",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"webpack-dev-server": "webpack-dev-server",
"webpack": "webpack",
"example:dev": "cross-env yarn run webpack-dev-server --config ./example/webpack.config.js --hot --env mode=development",
"example:build": "cross-env yarn run webpack --config ./example/webpack.config.js --env mode=production",
"example:clean": "rimraf ./example/dist",
"cm": "git-cz",
"semantic-release": "semantic-release"
},
"dependencies": {
"@babel/cli": "^7.17.3",
"@babel/core": "^7.17.5",
"@babel/node": "^7.16.8",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.17.3",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@babel/runtime": "^7.17.2",
"@babel/runtime-corejs3": "^7.17.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.5",
"autoprefixer": "^9.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.2.3",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.21.1",
"css-loader": "^6.6.0",
"css-minimizer-webpack-plugin": "^3.4.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.5.3",
"postcss": "^7.0.0",
"postcss-loader": "^6.2.1",
"precss": "^4.0.0",
"react-refresh": "^0.12.0",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.1",
"url-loader": "^4.1.1",
"url-search-params-polyfill": "^8.1.1",
"webpack": "^5.69.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
},
"resolutions": {
"semver": "^7.3.0"
},
"devDependencies": {
"bootstrap": "^4.1.3",
"c2-semantic-release": "ClearC2/c2-semantic-release#^3.0.1",
"cross-env": "^7.0.3",
"husky": "^1.1.1",
"jquery": "^3.5.0",
"popper.js": "^1.14.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^2.6.2"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0 || ^17.0.0",
"react-dom": "^15.0.0 || ^16.0.0 || ^17.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branch": "master",
"extends": "c2-semantic-release",
"npmPublish": true,
"publish": [
"@semantic-release/github",
"@semantic-release/npm"
]
}
}