-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.38 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.38 KB
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
{
"name": "cloud-console",
"version": "0.0.1",
"description": "用友运维开发者中心",
"main": "app/main.jsx",
"scripts": {
"lint": "eslint 'app/**/*.@(js|jsx)'",
"lint:msg": "validate-commit-msg",
"build": "webpack",
"start": "webpack-dev-server --devtool eval --progress --hot --content-base dist",
"deploy": "NODE_ENV=production webpack --config webpack.production.config.js",
"deploy-windows": "SET NODE_ENV=production & webpack --config webpack.production.config.js",
"validate": "npm ls",
"commit": "git cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1"
},
"dependencies": {
"babel-runtime": "6.x",
"classnames": "^2.2.5",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-router": "^3.0.0",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-logger": "^2.7.4",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0",
"tinper-bee": "^0.3.1"
},
"devDependencies": {
"babel-core": "6.x",
"babel-eslint": "7.x",
"babel-loader": "6.x",
"babel-plugin-transform-runtime": "6.x",
"babel-preset-es2015": "6.x",
"babel-preset-react": "6.x",
"babel-preset-stage-0": "6.x",
"commitizen": "^2.9.3",
"conventional-changelog-cli": "1.x",
"copy-webpack-plugin": "latest",
"css-loader": "~0.26.1",
"cz-conventional-changelog": "^1.2.0",
"eslint": "latest",
"eslint-config-airbnb": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jsx-a11y": "2.x",
"eslint-plugin-react": "latest",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.26.0",
"husky": "^0.12.0",
"open-browser-webpack-plugin": "0.0.3",
"style-loader": "~0.13.1",
"url-loader": "^0.5.7",
"validate-commit-msg": "2.x",
"webpack": "latest",
"webpack-dev-server": "latest"
},
"keywords": [
"es6",
"web app",
"boilerplate"
],
"author": "YonyouFED",
"license": "MIT",
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}