-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.12 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
{
"name": "harold-blog",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"clean": "rimraf static",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build": "npm run clean && npm run build:webpack",
"lint": "eslint client config model routes server.js || true"
},
"author": "Harold Shinsato",
"dependencies": {
"MD5": "^1.3.0",
"axios": "^0.7.0",
"babel": "^6.1.18",
"babel-core": "^6.1.21",
"babel-loader": "^6.2.0",
"babel-preset-react": "^6.1.18",
"bcrypt-nodejs": "latest",
"body-parser": "^1.14.1",
"browserify": "^12.0.1",
"classnames": "^2.2.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.0",
"ejs": "2.3.3",
"express": "^4.13.3",
"express-session": "^1.11.3",
"flux": "^2.1.1",
"method-override": "^2.3.5",
"moment": "^2.10.6",
"mongodb-uri": "^0.9.7",
"mongoose": "^4.1.11",
"morgan": "^1.6.1",
"passport": "^0.3.0",
"passport-local": "^1.0.0",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-redux": "^4.0.0",
"reactify": "^1.1.1",
"redux": "^3.0.4",
"redux-thunk": "^1.0.0",
"rx": "^4.0.7",
"sass-loader": "^3.1.1",
"style-loader": "^0.13.0",
"superagent": "^1.4.0",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.6.1",
"webpack": "^1.12.6"
},
"engines": {
"node": "5.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hajush/hajush.github.io.git"
},
"devDependencies": {
"babel-eslint": "^4.1.5",
"babel-preset-es2015": "^6.1.18",
"chokidar": "^1.3.0",
"eslint": "^1.10.1",
"eslint-config-airbnb": "^1.0.0",
"eslint-plugin-react": "^3.9.0",
"jsx-loader": "^0.13.2",
"react-hot-loader": "^1.3.0",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.1",
"redbox-react": "^1.2.0",
"rimraf": "^2.4.3",
"webpack-dev-middleware": "^1.2.0",
"webpack-dev-server": "^1.12.1",
"webpack-hot-middleware": "^2.5.0"
}
}