-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
75 lines (75 loc) · 2.17 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
{
"name": "react-intro",
"version": "1.0.0",
"description": "intro project to reactJS",
"main": "server.js",
"scripts": {
"test": "mocha",
"start": "node server.js",
"build": "webpack --config ./webpack.production.config.js --bail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lightninglu10/react-intro.git"
},
"author": "Patrick Lu",
"license": "ISC",
"bugs": {
"url": "https://github.com/lightninglu10/react-intro/issues"
},
"homepage": "https://github.com/lightninglu10/react-intro#readme",
"dependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-latest": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"bcrypt": "^1.0.2",
"bluebird": "^3.5.0",
"body-parser": "^1.17.1",
"bookshelf": "^0.10.3",
"chance": "^1.0.6",
"chokidar": "^1.6.1",
"clean-webpack-plugin": "^0.1.16",
"cookie-parser": "^1.4.3",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.27.3",
"express": "^4.15.2",
"express-session": "^1.15.2",
"extract-text-webpack-plugin": "^2.1.0",
"history": "^4.6.1",
"html-webpack-plugin": "^2.28.0",
"knex": "^0.12.9",
"lodash": "^4.17.4",
"node-sass": "^4.5.1",
"passport": "^0.3.2",
"passport-facebook-token": "^3.3.0",
"passport-local": "^1.0.0",
"pg": "^6.1.5",
"postcss-cssnext": "^2.10.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.3.3",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-logger": "^3.0.0",
"redux-thunk": "^2.2.0",
"sass-loader": "^6.0.3",
"stats-webpack-plugin": "^0.5.0",
"style-loader": "^0.16.0",
"webpack": "^2.3.2",
"webpack-dev-middleware": "^1.10.1",
"webpack-dev-server": "^2.4.2",
"webpack-hot-middleware": "^2.17.1"
},
"devDependencies": {
"babel-preset-react": "^6.23.0",
"react-hot-loader": "^1.3.1",
"webpack-hot-middleware": "^2.17.1"
}
}