-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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
{
"name": "webpack-starter-pack",
"version": "0.0.1",
"description": "This is a very basic webpack setup with just ES6 support and everything else is left upto your creativity",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server --config webpack.dev.js --mode development",
"dll": "webpack --config webpack.dll.js --mode production",
"build": "webpack --config webpack.prod.js --mode production",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s -w -r 0"
},
"keywords": [
"react"
],
"license": "MIT",
"config": {
"commitizen": {
"path": "cz-customizable"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint --env HUSKY_GIT_PARAMS",
"post-commit": "npm run log"
}
},
"dependencies": {
"list-diff2": "^0.1.4",
"normalize.css": "^8.0.0",
"snabbdom": "^0.7.3"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"conventional-changelog-cli": "^2.0.31",
"husky": "^3.1.0",
"@babel/core": "^7.6.4",
"@babel/plugin-transform-react-jsx": "^7.3.0",
"@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"
}
}