-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
92 lines (92 loc) · 2.77 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
90
91
92
{
"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": {
"@babel/core": "^7.10.3",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"autoprefixer": "^9.8.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"bundle-loader": "^0.5.6",
"chalk": "^4.1.0",
"commitizen": "^4.1.2",
"commitlint": "^9.0.1",
"conventional-changelog-cli": "^2.0.34",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.6.5",
"cross-env": "^7.0.2",
"cross-spawn": "^7.0.3",
"css-loader": "^3.6.0",
"cssnano": "^4.0.4",
"eslint": "^7.3.1",
"eslint-config-standard": "^14.1.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.1",
"express": "^4.16.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"http-proxy-middleware": "^1.0.4",
"husky": "^4.2.5",
"jimi-web-changelog": "^0.1.7",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"opn": "^5.3.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"ora": "^4.0.4",
"postcss-loader": "^3.0.0",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"semver": "^7.3.2",
"terser-webpack-plugin": "^3.0.6",
"webpack": "^4.43.0",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-dev-middleware": "^3.7.2",
"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"
]
}