-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "webpack-react-starter",
"version": "1.0.0",
"description": "A react project built from scratch with webpack",
"main": "index.js",
"scripts": {
"start": "webpack serve",
"build": "webpack --mode production",
"build:dev": "webpack",
"types:check": "tsc --noEmit",
"prettify": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Rany Tarek Bouorm",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@types/react-dom": "^17.0.14",
"babel-loader": "^8.2.4",
"css-loader": "^6.7.1",
"eslint": "^8.12.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "2.6.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"dependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}