-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.9 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
47
48
49
50
{
"name": "react-webpack-template",
"description": "🏁 A template to get started quickly with a React project.",
"version": "0.0.8",
"license": "MIT",
"author": "Yves Gurcan",
"repository": {
"type": "git",
"url": "https://github.com/yvesgurcan/react-webpack-boilerplate"
},
"main": "index.js",
"scripts": {
"start": "npm run network-info; webpack-dev-server",
"build": "webpack --mode production",
"test": "jest",
"preversion": "npm run test",
"postversion": "npm run build && git add . && git commit -m 'New build' && git push",
"network-info": "echo \"ℹ 「wds」 Running on local network at http:/\" | tr \"\n\" \"/\"; ifconfig | grep \"inet \" | grep -Fv 127.0.0.1 | awk '{print $2}'"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.11.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"@testing-library/jest-dom": "^5.11.2",
"@testing-library/react": "^10.4.7",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.2",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.11.1",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.0",
"html-webpack-plugin": "^4.3.0",
"jest": "^26.3.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0",
"styled-components": "^5.1.1",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"workbox-webpack-plugin": "^5.1.3"
}
}