-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
85 lines (85 loc) · 2.33 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
{
"name": "boilerplate-koa-redux-react",
"version": "1.0.0",
"description": "A boilerplate for a Koa Redux React application with Webpack, Mocha and SASS",
"main": "index.js",
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
},
"scripts": {
"test": "`npm bin`/mocha --compilers js:babel-core/register --require ./app/tests/test_helper.js '*/tests/**/*.@(js|jsx)'",
"test:watch": "npm run test -- --watch",
"webserver": "node api/src/server.js",
"build": "`npm bin`/webpack",
"dev": "`npm bin`/webpack-dev-server",
"lint": "`npm bin`/eslint . --ext .js --ext .jsx",
"deploy": "NODE_ENV=production `npm bin`/webpack -p",
"start": "npm run dev",
"clean": "rm -rf app/dist app/build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mezod/boilerplate-koa-redux-react.git"
},
"keywords": [
"boilerplate",
"koa",
"redux",
"react",
"webpack",
"mocha",
"sass"
],
"author": "Joan Boixadós",
"license": "MIT",
"bugs": {
"url": "https://github.com/mezod/boilerplate-koa-redux-react/issues"
},
"homepage": "https://github.com/mezod/boilerplate-koa-redux-react#readme",
"dependencies": {
"babel-core": "^6.3.15",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"bookshelf": "^0.9.1",
"css-loader": "^0.23.0",
"history": "^1.14.0",
"html-webpack-plugin": "^2.7.1",
"immutable": "^3.7.5",
"isomorphic-fetch": "^2.2.0",
"knex": "^0.9.0",
"koa": "^1.1.2",
"koa-cors": "0.0.16",
"koa-route": "^2.4.2",
"mysql": "^2.9.0",
"node-sass": "^3.4.2",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.0.0",
"react-router": "^1.0.1",
"redux": "^3.0.4",
"redux-thunk": "^1.0.0",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.9"
},
"devDependencies": {
"babel-eslint": "^5.0.0-beta4",
"chai": "^3.4.1",
"chai-immutable": "^1.5.3",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^4.0.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.11.3",
"jsdom": "^7.2.0",
"mocha": "^2.3.4",
"react-hot-loader": "^1.3.0",
"redux-devtools": "^3.0.1",
"webpack-dev-server": "^1.14.0"
}
}