-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 878 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 878 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
33
34
35
36
{
"name": "new-project",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git"
},
"main": "index.js",
"scripts": {
"start": "webpack serve --open --hot --port 8081 --mode development --config webpack.dev.config.js",
"build": "webpack --mode production --config webpack.prod.config.js"
},
"keywords": [
"React",
"TypeScript"
],
"author": "Jack Pantalena",
"license": "ISC",
"dependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
},
"devDependencies": {
"@types/react": "^16.14.0",
"@types/react-dom": "^16.9.9",
"css-loader": "^5.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.11",
"typescript": "^4.1.2",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
}
}