-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 2.19 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
{
"name": "react-transform-boilerplate",
"version": "1.0.0",
"description": "A new Webpack boilerplate with hot reloading React components, and error handling on module and component level.",
"scripts": {
"clean": "rimraf dist",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"start": "babel-node devServer.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/gaearon/react-transform-boilerplate.git"
},
"keywords": [
"react",
"reactjs",
"boilerplate",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack",
"babel",
"react-transform"
],
"author": "Dan Abramov <[email protected]> (http://github.com/gaearon)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/gaearon/react-transform-boilerplate/issues"
},
"homepage": "https://github.com/gaearon/react-transform-boilerplate",
"devDependencies": {
"babel-core": "^5.4.7",
"babel-eslint": "^3.1.9",
"babel-loader": "^5.1.2",
"babel-plugin-react-transform": "^1.1.1",
"eslint": "^1.3.1",
"eslint-plugin-react": "^2.3.0",
"express": "^4.13.3",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.1",
"rimraf": "^2.4.3",
"webpack": "^1.9.6",
"webpack-dev-middleware": "^1.2.0",
"webpack-hot-middleware": "^2.0.0"
},
"dependencies": {
"baobab": "^2.1.1",
"body-parser": "^1.14.1",
"cerebral": "^0.23.0",
"cerebral-baobab": "^0.3.1",
"cerebral-react": "^0.5.1",
"cerebral-router": "^0.7.3",
"crypto": "0.0.3",
"dbmon": "^1.1.0",
"express-session": "^1.12.1",
"feathers": "^1.2.0",
"feathers-client": "^0.2.1",
"feathers-hooks": "^0.5.1",
"feathers-authenticate": "[email protected]:randomnerd/feathers-authentication.git#patch-1",
"lodash": "^3.10.1",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"path-to-regexp": "^1.2.1",
"pg": "^4.4.3",
"pg-hstore": "^2.3.2",
"react": "^0.14.0",
"react-dom": "^0.14.0",
"sequelize": "^3.13.0",
"socket.io-client": "^1.3.7"
}
}