-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.76 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.76 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "web-starter",
"version": "1.0.0",
"author": "Eitan Rosenberg <eitanrosenberg@gmail.com>",
"description": "A project to help get a project rolling.",
"main": "src/index.js",
"license": "MIT",
"scripts": {
"dev:build": "env-cmd -f .env/dev.env webpack-dev-server --config ./webpack.dev.config.js",
"prod:build": "env-cmd -f .env/prod.env webpack --config ./webpack.prod.config.js",
"dev": "yarn dev:build"
},
"dependencies": {
"axios": "^0.21.1",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/plugin-proposal-throw-expressions": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@hot-loader/react-dom": "^16.13.0",
"@types/react-dom": "^16.9.6",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^5.1.1",
"core-js": "3",
"css-loader": "^3.5.0",
"env-cmd": "^10.1.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^4.2.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.13.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"progress-bar-webpack-plugin": "^2.1.0",
"react-hot-loader": "^4.12.20",
"regenerator-runtime": "^0.13.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}