-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
{
"name": "webpack-starter-pack",
"version": "0.0.1",
"description": "Basic webpack starter",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --config webpack.dev.js --mode development",
"build": "webpack --config webpack.prod.js --mode production",
"preview": "npm run build && http-server dist"
},
"prettier": {
"tabWidth": 2
},
"repository": {
"type": "git",
"url": "git+https://github.com/ameerthehacker/webpack-starter-pack.git"
},
"keywords": [
"react"
],
"author": "ameerthehacker",
"license": "MIT",
"bugs": {
"url": "https://github.com/ameerthehacker/webpack-starter-pack/issues"
},
"homepage": "https://github.com/ameerthehacker/webpack-starter-pack#readme",
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.8.3",
"normalize.css": "^8.0.0",
"snabbdom": "^0.7.4"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^3.1.0",
"http-server": "^0.11.1",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.3",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-dev-server": "^3.1.11"
}
}