-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 1.25 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
42
43
44
45
46
{
"name": "webpack-react-setup",
"version": "1.0.0",
"description": "React app without using CLI",
"main": "index.js",
"scripts": {
"start": "webpack serve .",
"build": "webpack .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sirdarthvader/webpack-react-setup.git"
},
"keywords": [
"Reactjs",
"webpackjs"
],
"author": "Ashish",
"license": "MIT",
"bugs": {
"url": "https://github.com/sirdarthvader/webpack-react-setup/issues"
},
"homepage": "https://github.com/sirdarthvader/webpack-react-setup#readme",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@babel/runtime": "^7.14.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.3.6",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}