forked from xesrevinu/ddx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.74 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.74 KB
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
{
"name": "ddx",
"version": "1.0.0",
"private": false,
"description": "A Node.js blog using react+redux+react-router",
"main": "server/bin/www.js",
"scripts": {
"server-start": "NODE_ENV=production node ./server/bin/www",
"server-start-win": "set NODE_ENV=production && node ./server/bin/www",
"server-watch": "node_modules/.bin/nodemon -w ./server ./server/bin/www.js",
"client-watch": "node ./webpack/hot.js",
"client-build": "NODE_ENV=production node_modules/.bin/webpack -p --config ./webpack/webpack.prod.config",
"client-build-win": "set NODE_ENV=production && node ./node_modules/webpack/bin/webpack.js -p --config ./webpack/webpack.prod.config"
},
"dependencies": {
"axios": "^0.7.0",
"babel": "6.0.12",
"bluebird": "^2.10.1",
"classnames": "^2.1.3",
"codemirror": "^5.8.0",
"cssnext": "^1.8.4",
"halogen": "^0.1.10",
"highlight.js": "^8.9.1",
"history": "^1.12.3",
"howler": "^2.0.0-beta3",
"jsonwebtoken": "^5.0.4",
"jwt-decode": "^1.4.0",
"koa": "^1.0.0",
"koa-bodyparser": "^2.0.1",
"koa-compress": "^1.0.8",
"koa-cors": "^0.0.16",
"koa-ejs": "^2.0.1",
"koa-logger": "^1.3.0",
"koa-router": "^5.1.2",
"koa-static": "^1.4.9",
"lodash": "^3.10.1",
"marked": "^0.3.5",
"moment": "^2.10.6",
"mongoose": "^4.2.6",
"normalize.css": "^3.0.3",
"rc-queue-anim": "^0.9.0",
"react": "^0.14.3",
"react-dom": "^0.14.1",
"react-modal": "^0.6.1",
"react-redux": "^3.1.0",
"react-router": "^1.0.0-rc2",
"redux": "^3.0.3",
"redux-thunk": "^1.0.0",
"socket.io": "^1.3.7",
"socket.io-client": "^1.3.7",
"velocity-react": "^1.1.1"
},
"devDependencies": {
"autoprefixer": "^6.0.3",
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"babel-plugin-react-transform": "^1.1.1",
"babel-runtime": "^6.0.12",
"clean-webpack-plugin": "^0.1.4",
"css-loader": "^0.19.0",
"debug": "^2.2.0",
"eslint": "^1.6.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-import": "^0.8.1",
"eslint-plugin-react": "^3.5.1",
"extract-text-webpack-plugin": "^0.8.2",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.6.1",
"json-loader": "^0.5.3",
"nodemon": "^1.7.0",
"postcss-color-rebeccapurple": "^2.0.0",
"postcss-loader": "^0.6.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.1.1",
"redux-devtools": "^2.1.5",
"redux-logger": "^2.0.1",
"style-loader": "^0.12.4",
"stylus-loader": "^1.4.2",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0",
"webpack-hot-middleware": "^2.4.1"
}
}