-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.44 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
{
"name": "regularjs-ssr-routing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "gulp build --production",
"buildcss": "mcss -c app/client/mcss/mcss.json",
"dev": "devtool -w ./app -- app/server/app.js",
"start": "node app/server/app.js",
"stop": "pkill YOUDATA_BACKEND"
},
"author": "neteasefed",
"license": "MIT",
"dependencies": {
"co": "^4.6.0",
"es6-promise": "^3.2.1",
"isomorphic-fetch": "^2.2.1",
"koa": "^1.2.0",
"koa-bodyparser": "^2.0.1",
"koa-ejs": "^3.0.0",
"koa-router": "^5.4.0",
"koa-session": "^3.3.1",
"koa-static": "^2.0.0",
"regular-state": "regularjs/regular-state#ssr",
"regularjs": "regularjs/regular#ssr",
"ua-parser-js": "^0.7.10"
},
"devDependencies": {
"babel-loader": "^5.2.0",
"raw-loader": "^0.5.1",
"copy-webpack-plugin": "^1.1.1",
"gulp": "^3.9.1",
"gulp-shell": "^0.5.2",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"gulp-webpack": "^1.5.0",
"mcss": "^0.5.1",
"through2": "^2.0.1",
"webpack": "~1.12.9",
"yargs": "^4.6.0"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 6
},
"globals": {
"Regular": true
},
"rules": {
"camelcase": 2,
"brace-style": [
2,
"1tbs"
],
"quotes": [
2,
"single"
]
}
}
}