-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·85 lines (85 loc) · 2.37 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
{
"name": "zhihu-live-react",
"version": "1.0.0",
"description": "",
"main": "app/main.jsx",
"scripts": {
"start": "webpack-dev-server --colors --devtool eval --progress --hot --content-base app",
"build": "./node_modules/.bin/webpack --progress --colors --config webpack.prod.config.js",
"deploy": "NODE_ENV=production webpack -p --config webpack.production.config.js",
"deploy-windows": "SET NODE_ENV=production & webpack -p --config webpack.production.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"commit": "git cz",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1"
},
"dependencies": {
"babel-runtime": "6.x",
"extract-text-webpack-plugin": "^1.0.1",
"ghooks": "^1.3.2",
"html-webpack-plugin": "^2.22.0",
"jshint": "^2.9.3",
"lodash": "^4.17.2",
"mockjs": "^1.0.1-beta3",
"query-string": "^4.2.3",
"react": "15.x",
"react-dom": "15.x",
"react-loading": "0.0.9",
"react-modal": "^1.5.2",
"react-router": "^2.6.1",
"react-slick": "^0.12.2",
"url-loader": "^0.5.7",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1",
"whatwg-fetch": "^1.0.0"
},
"devDependencies": {
"babel-core": "6.x",
"babel-eslint": "6.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.5.0",
"conventional-changelog-cli": "1.x",
"copy-webpack-plugin": "latest",
"css-loader": "^0.23.1",
"cz-conventional-changelog": "^1.1.5",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"ghooks": "^1.3.2",
"jshint": "^2.9.3",
"node-sass": "^3.8.0",
"open-browser-webpack-plugin": "0.0.2",
"redux": "^3.6.0",
"sass-loader": "^4.0.1",
"style-loader": "^0.13.1",
"validate-commit-msg": "2.x"
},
"keywords": [
"es6",
"react zhizhulive"
],
"author": "songhao",
"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"
}
}
}