forked from pizn/eevee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.56 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
{
"name": "eevee",
"version": "0.0.2",
"description": "伊布 - 内容为王,基于 GitHub 的博客管理平台",
"keywords": [
"jekyll",
"github"
],
"repository": {
"type": "git",
"url": "https://github.com/pizn/eevee.git"
},
"bugs": {
"url": "https://github.com/pizn/eevee.git/issues"
},
"license": "MIT",
"entry": {
"index": "./src/entry/App.jsx"
},
"dependencies": {
"antd": "0.11.x",
"babel": "~5.8.29",
"babel-cli": "^6.1.18",
"babel-core": "~5.8.33",
"babel-eslint": "~4.1.6",
"babel-loader": "~5.3.2",
"babel-plugin-antd": "~0.2.0",
"babel-plugin-react-intl": "^2.0.0",
"babel-plugin-react-transform": "~1.1.1",
"babel-plugin-transform-object-rest-spread": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-es2015-rollup": "^1.0.0",
"babel-preset-react": "^6.1.18",
"babel-register": "^6.2.0",
"babel-runtime": "~5.8.20",
"babelify": "^7.2.0less",
"base-64": "~0.1.0",
"classnames": "~2.2.3",
"co": "~4.6.0",
"co-views": "~1.0.0",
"codemirror": "~5.9.0",
"css-loader": "^0.23.1",
"detector": "2.4.1",
"extract-text-webpack-plugin": "~1.0.1",
"github-api": "~0.11.2",
"highlight.js": "~9.1.0",
"history": "~1.17.0",
"js-yaml": "~3.5.2",
"keymaster": "~1.6.2",
"koa": "~1.0.0",
"koa-bodyparser": "~2.0.1",
"koa-compress": "1.0.x",
"koa-error": "1.1.x",
"koa-generic-session": "~1.9.2",
"koa-logger": "1.3.0",
"koa-passport": "~1.1.5",
"koa-proxy": "^0.3.0",
"koa-response-time": "1.0.x",
"koa-router": "~5.2.1",
"koa-static-cache": "~3.1.2",
"less": "~2.5.0",
"less-loader": "~2.2.0",
"lodash": "~3.10.1",
"marked": "~0.3.5",
"mocha": "~2.3.4",
"moment": "~2.10.6",
"nodemon": "~1.4.1",
"null-loader": "~0.1.1",
"object-assign": "~2.0.0",
"rc-form": "~0.7.3",
"react": "~0.14.3",
"react-dom": "~0.14.3",
"react-hot-loader": "~1.2.9",
"react-proxy-loader": "~0.3.4",
"react-redux": "~4.0.6",
"react-router": "~1.0.3",
"redux": "~3.1.3",
"redux-devtools": "~3.0.1",
"redux-promise": "~0.5.0",
"redux-thunk": "~1.0.3",
"style-loader": "~0.13.0",
"swig": "~1.4.2",
"utf8": "~2.1.1",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-dev-server": "~1.10.1",
"webpack-hot-middleware": "~2.5.1",
"webpack-isomorphic-tools": "^0.8.8",
"yargs": "~3.21.0"
},
"devDependencies": {
"babel-plugin-transform-decorators-legacy": "~1.3.4",
"eslint": "~1.10.3",
"eslint-config-airbnb": "~2.1.0",
"eslint-plugin-babel": "~3.0.0",
"eslint-plugin-react": "~3.11.3",
"pre-commit": "1.x"
},
"pre-commit": [
"lint"
],
"scripts": {
"dev": "NODE_ENV=development ./node_modules/.bin/nodemon --harmony server.js",
"prod": "npm run build && NODE_ENV=production node --harmony server.js",
"build": "NODE_ENV=production webpack --config webpack.config.js --separate-stylesheet -p --progress --profile --colors",
"hot-dev-server": "webpack-dev-server --content-base public -ds --config webpack.config.js --hot --progress --colors --inline",
"dev-server": "npm run hot-dev-server",
"lint": "eslint --ext .js,.jsx src",
"test": "npm run base-test && npm run lint",
"base-test": "NODE_ENV=test ./node_modules/.bin/mocha --harmony --reporter spec ./test/test-*.js",
"validate": "npm ls"
},
"theme": {
"primary-color": "#343434",
"link-color": "#343434",
"border-color-base": "#e2e7ec",
"btn-border-radius-base": "32px"
}
}