-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 838 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 838 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
32
{
"name": "helloworld",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"private": true,
"scripts": {
"build": "npx webpack --config webpack.config.dev.js",
"build:prod": "npx webpack",
"start": "npx webpack serve --config webpack.config.dev.js",
"watch": "npx webpack --watch --config webpack.config.dev.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.13",
"html-loader": "^3.1.0",
"html-webpack-plugin": "^5.5.0",
"ts-loader": "^9.2.7",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"webpack-merge": "^5.8.0"
}
}