-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 727 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 727 Bytes
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
{
"name": "component-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"webpack": "webpack --watch",
"serve": "serve dist -p 3001",
"start": "concurrently \"npm run webpack\" \"npm run serve\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.17.10",
"@babel/preset-react": "7.16.7",
"babel-loader": "8.2.5",
"concurrently": "7.1.0",
"css-loader": "6.7.1",
"html-webpack-plugin": "5.5.0",
"serve": "13.0.2",
"style-loader": "3.3.1",
"url-loader": "4.1.1",
"webpack": "5.72.1",
"webpack-cli": "4.9.2"
},
"dependencies": {
"react": "16.14.0",
"react-dom": "16.14.0"
}
}