-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
93 lines (93 loc) · 2.77 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
{
"name": "koa-react-full-example",
"version": "0.6.1",
"description": "Full example using Koa, React, Passport, Mongoose, Gulp, Mocha",
"keywords": [
"koa",
"react",
"mongoose",
"mocha",
"webpack",
"mocha",
"passport",
"react-bootstrap",
"react-router",
"example"
],
"main": "server.js",
"repository": {
"type": "git",
"url": "https://github.com/dozoisch/koa-react-full-example"
},
"scripts": {
"start": "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",
"test": "npm run base-test && npm run lint",
"base-test": "NODE_ENV=test ./node_modules/.bin/mocha --harmony --reporter spec ./test/test-*.js",
"lint": "eslint src app test webpack config lib server.js webpack.config.js"
},
"author": "Hugo Dozois <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=0.12.0",
"iojs": ">=1.6.0"
},
"dependencies": {
"bcrypt": "~0.8.5",
"bootstrap": "~3.3.4",
"co": "~4.6.0",
"co-views": "~1.0.0",
"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-response-time": "1.0.x",
"koa-router": "~5.1.2",
"koa-static-cache": "~3.1.2",
"lodash": "~3.10.1",
"mongoose": "~4.1.3",
"passport-local": "1.0.x",
"react": "~0.13.1",
"react-bootstrap": "~0.23.7",
"react-router": "~0.13.2",
"react-router-bootstrap": "~0.17.1",
"superagent": "~1.3.0",
"swig": "1.4.x"
},
"devDependencies": {
"babel": "~5.8.23",
"babel-core": "~5.8.23",
"babel-eslint": "~4.1.0",
"babel-loader": "~5.3.2",
"babel-runtime": "~5.8.20",
"css-loader": "~0.16.0",
"eslint": "~1.2.1",
"eslint-plugin-babel": "~2.1.1",
"eslint-plugin-react": "~3.3.0",
"extract-text-webpack-plugin": "~0.8.2",
"file-loader": "~0.8.1",
"html-loader": "~0.3.0",
"koa-proxy": "^0.3.0",
"koa-sess-mongo-store": "~0.1.1",
"less": "~2.5.0",
"less-loader": "~2.2.0",
"mocha": "~2.2.4",
"nodemon": "~1.4.1",
"null-loader": "~0.1.1",
"react-hot-loader": "~1.2.9",
"react-proxy-loader": "~0.3.4",
"should": "~7.0.4",
"style-loader": "~0.12.3",
"supertest": "~1.1.0",
"url-loader": "~0.5.5",
"webpack": "~1.12.0",
"webpack-dev-server": "~1.10.1",
"yargs": "~3.21.0"
}
}