forked from duxianwei520/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 3.49 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "duxiaodu",
"version": "0.0.1",
"description": "duxiaodu",
"repository": {
"type": "gitlab",
"url": "http://192.168.1.88/duxiaodu"
},
"private": true,
"scripts": {
"start": "webpack-dev-server --history-api-fallback --hot --inline --process --colors --port 3000",
"build": "webpack",
"test": "PWD=$(pwd) ava --verbose",
"lint": "eslint ./ --cache --fix --ignore-pattern .gitignore",
"precommit-msg": "echo Pre-commit checking...please wait && exit 0"
},
"author": "duxiaodu",
"devDependencies": {
"ava": "~0.15.2",
"babel": "~6.5.2",
"babel-cli": "~6.11.4",
"babel-core": "~6.10.4",
"babel-eslint": "~6.1.2",
"babel-loader": "~6.2.4",
"babel-plugin-antd": "^0.5.1",
"babel-plugin-espower": "~2.3.1",
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"babel-plugin-transform-runtime": "~6.9.0",
"babel-plugin-webpack-alias": "~2.1.1",
"babel-preset-es2015": "~6.9.0",
"babel-preset-react": "~6.11.1",
"babel-preset-stage-0": "~6.5.0",
"babel-register": "~6.9.0",
"css-loader": "~0.23.1",
"eslint": "~3.3.1",
"eslint-config-airbnb": "~10.0.1",
"eslint-plugin-babel": "~3.3.0",
"eslint-plugin-import": "~1.13.0",
"eslint-plugin-jsx-a11y": "~2.1.0",
"eslint-plugin-react": "~6.1.1",
"extract-text-webpack-plugin": "~1.0.1",
"file-loader": "~0.9.0",
"ghooks": "^1.3.2",
"http-proxy": "~1.14.0",
"jsdom": "~9.4.1",
"jshint": "^2.9.4",
"less": "~2.7.1",
"less-loader": "~2.2.3",
"nyc": "~7.0.0",
"postcss-loader": "~0.9.1",
"prepare-commit-msg-dianwoda": "^0.2.1",
"react-addons-test-utils": "~15.2.1",
"react-hot-loader": "~1.3.0",
"redux-ava": "~2.1.0",
"sinon": "~1.17.4",
"style-loader": "~0.13.1",
"url-loader": "~0.5.7",
"validate-commit-msg": "^2.8.0",
"webpack-dev-middleware": "~1.6.1",
"webpack-dev-server": "~1.14.1",
"webpack-hot-middleware": "~2.12.1"
},
"dependencies": {
"antd": "^2.5.0",
"babel-polyfill": "~6.9.1",
"babel-runtime": "~6.9.2",
"echarts": "~3.2.3",
"ejs": "~2.5.1",
"express": "~4.14.0",
"extract-text-webpack-plugin": "~1.0.1",
"html-webpack-plugin": "~2.22.0",
"immutable": "~3.8.1",
"isomorphic-fetch": "~2.2.1",
"moment": "~2.14.1",
"open-browser-webpack-plugin": "~0.0.2",
"rc-queue-anim": "^0.12.6",
"rc-tween-one": "~0.8.5",
"react": "~15.3.2",
"react-copy-to-clipboard": "~4.2.3",
"react-dom": "~15.2.1",
"react-images": "~0.4.11",
"react-redux": "~4.4.5",
"react-router": "~2.6.0",
"react-router-redux": "~4.0.5",
"redux": "~3.5.2",
"redux-actions": "~0.10.1",
"redux-thunk": "~2.1.0",
"webpack": "~1.13.1"
},
"ava": {
"files": [
"./app/**/*.test.js"
],
"require": [
"./test/setup-test-env.js"
],
"failFast": true,
"tap": true,
"babel": "inherit"
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": ""
},
"ghooks": {
"pre-commit": "npm run precommit-msg && npm run lint",
"prepare-commit-msg": "prepare-commit-msg-dianwoda $2 $3",
"commit-msg": "validate-commit-msg"
}
}
}