-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
100 lines (100 loc) · 2.83 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
{
"name": "easy-koa-mongo-redux-react-jwt-auth-boilerplate",
"version": "1.0.0",
"description": "A boilerplate with JWT auth for a Koa Mongodb Redux React",
"main": "index.js",
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
},
"scripts": {
"test": "NODE_ENV=test mocha --opts './mocha.opts' '*/tests/**/*.@(js|jsx)'; exit 0",
"test:watch": "npm run test -- --watch",
"webserver": "node api/register.js",
"webserver:watch": "nodemon api/register.js",
"build": "webpack -p; exit 0",
"dev": "webpack-dev-server; exit 0",
"lint": "eslint . --ext .js --ex; exit 0t .jsx; exit 0",
"deploy": "NODE_ENV=production webpack -p",
"start": "npm run dev",
"clean": "rm -rf app/dist app/build"
},
"repository": {
"type": "git",
"url": "https://github.com/cluk3/easy-koa-mongo-redux-react-jwt-auth-boilerplate"
},
"keywords": [
"boilerplate",
"koa",
"redux",
"react",
"webpack",
"mocha"
],
"author": "Luca Campli",
"license": "MIT",
"homepage": "https://github.com/cluk3/easy-koa-mongo-redux-react-jwt-auth-boilerplate",
"dependencies": {
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-polyfill": "^6.3.14",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"bcrypt": "^0.8.5",
"classnames": "^2.2.3",
"css-loader": "^0.23.0",
"exports-loader": "^0.6.2",
"flexboxgrid": "^6.3.0",
"history": "^1.14.0",
"html-webpack-plugin": "^2.7.1",
"imports-loader": "^0.6.5",
"isomorphic-fetch": "^2.2.0",
"jsonwebtoken": "^5.5.4",
"kerberos": "0.0.18",
"koa": "^1.1.2",
"koa-bodyparser": "^2.0.1",
"koa-cors": "0.0.16",
"koa-logger": "^1.3.0",
"koa-route": "^2.4.2",
"material-ui": "^0.14.4",
"mongoose": "^4.3.7",
"node-sass": "^3.4.2",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-flexbox-grid": "^0.9.4",
"react-redux": "^4.0.0",
"react-router": "^1.0.1",
"react-router-redux": "^3.0.0",
"react-tap-event-plugin": "^0.2.2",
"redux": "^3.0.4",
"redux-logger": "^2.5.0",
"redux-thunk": "^1.0.0",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.9",
"whatwg-fetch": "^0.11.0"
},
"devDependencies": {
"autoprefixer": "^6.3.1",
"babel-eslint": "^5.0.0-beta4",
"chai": "^3.5.0",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.11.3",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"jsdom": "^7.2.0",
"mocha": "^2.3.4",
"mocha-clean": "^1.0.0",
"postcss-loader": "^0.8.0",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^3.0.1",
"supertest": "^1.1.0",
"webpack-dev-server": "^1.14.0"
}
}