-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "101",
"private": true,
"scripts": {
"start": "webpack-dev-server --hot --config ./webpack.config.js",
"clean": "rimraf dist",
"build": "webpack --config ./webpack.config.js --mode production"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"spectacle": "^10.1.7"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.0",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"babel-loader": "^8.0.6",
"commitizen": "^4.3.0",
"css-loader": "^5.1.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"raw-loader": "^4.0.2",
"rimraf": "^3.0.0",
"style-loader": "^3.3.1",
"typescript": "^5.3.3",
"webpack": "^5.68.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^4.7.4"
}
}