-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
52 lines (52 loc) · 1.42 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
51
52
{
"name": "bare_bones_react",
"version": "1.0.0",
"description": "A minimalist web framework.",
"main": "index.js",
"scripts": {
"devStart": "webpack --mode development",
"server": "node ./server/index.js",
"prodStart": "webpack --mode production",
"dev": "npm-run-all -p -r devStart server",
"prod": "npm-run-all -p -r prodStart server",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chawk/webdev2019.git"
},
"author": "Chris Hawkes",
"license": "MIT",
"bugs": {
"url": "https://github.com/chawk/webdev2019/issues"
},
"homepage": "https://github.com/chawk/webdev2019#readme",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^2.1.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"sass-loader": "^7.1.0",
"terser-webpack-plugin": "^1.2.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/react"
]
}
}