-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.05 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
{
"name": "koa2-react-ssr",
"version": "1.0.1",
"description": "react server-side-render with koa2",
"main": "dist/app",
"scripts": {
"start": "nodemon src --config",
"test:watch": "nodemon ./node_modules/.bin/mocha --opts .mocharc ./test/*-spec.js",
"test": "./node_modules/.bin/mocha --opts ./test/.mocharc ./test/*-spec.js",
"lint": "./node_modules/.bin/eslint .",
"validate": "npm run lint && npm test",
"clear": "rimraf dist",
"debug": "cross-env DEBUG=* npm start",
"build": "npm run clear && cross-env NODE_ENV=production babel src -d dist --copy-files",
"serve": "node dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-react-optimize": "^1.0.1",
"babel-preset-stage-0": "^6.22.0",
"babel-runtime": "^6.22.0",
"co": "^4.6.0",
"cross-env": "^4.0.0",
"ejs": "^2.5.6",
"eslint": "^3.14.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"mocha": "^3.2.0",
"nodemon": "^1.10.0"
},
"dependencies": {
"glamor": "^3.0.0-1",
"glamor-react": "^3.0.0-1",
"glamor-server": "^3.0.0-1",
"koa": "^2.2.0",
"koa-bodyparser": "^2.5.0",
"koa-conditional-get": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-csrf": "^2.5.0",
"koa-etag": "^3.0.0",
"koa-generic-session": "^1.11.5",
"koa-logger": "^2.0.1",
"koa-onerror": "^3.0.2",
"koa-passport": "^3.0.0",
"koa-router": "^7.1.1",
"koa-static-server": "^1.0.0",
"koa-views": "^5.2.1",
"lru-cache": "^4.0.2",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"prop-types": "^15.5.10",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-router": "^3.0.4",
"supertest": "^3.0.0"
}
}