forked from ctank/bpd-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.63 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "bpd-core",
"version": "1.1.0-beta.5",
"author": "Ctank",
"main": "index.js",
"repository": "https://github.com/ctank/bpd-core.git",
"scripts": {
"clean": "rimraf dist",
"build:umd": "cross-env NODE_ENV=production type=UMD node build/build.js",
"build:file": "cross-env NODE_ENV=production node build/build.js",
"dist": "npm run clean && npm run build:file && npm run build:umd",
"dev:umd": "cross-env NODE_ENV=watch type=UMD node build/build.js",
"dev:file": "cross-env NODE_ENV=watch node build/build.js",
"dev": "npm run clean && npm run dev:file && npm run dev:umd",
"start": "cross-env NODE_ENV=hot node build/webpack.config.server.js",
"log": "conventional-changelog --config node_modules/jimi-web-changelog/lib/log -i CHANGELOG.md -s -r 0"
},
"devDependencies": {
"autoprefixer": "^9.6.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-import": "^1.8.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "6.24.1",
"bundle-loader": "^0.5.6",
"chalk": "^2.4.1",
"commitizen": "^4.0.3",
"commitlint": "^8.3.5",
"conventional-changelog-cli": "^2.0.31",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"cross-spawn": "^6.0.5",
"css-loader": "^0.28.1",
"cssnano": "^4.0.4",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"express": "^4.16.3",
"extract-text-webpack-plugin": "3.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.19.1",
"husky": "^4.0.10",
"jimi-web-changelog": "^0.1.7",
"node-sass": "^4.12.0",
"opn": "^5.3.0",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"ora": "^3.0.0",
"postcss-loader": "^2.1.6",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.3",
"semver": "^5.5.0",
"webpack": "^3.12.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-dev-middleware": "^1.12.2",
"webpack-dev-server": "^3.3.1",
"webpack-hot-middleware": "^2.21.0"
},
"license": "MIT",
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"files": [
"dist",
"docs",
"index.js"
],
"config": {
"commitizen": {
"path": "./node_modules/jimi-web-changelog/lib/cz"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}