-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.82 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
86
87
88
89
90
91
{
"name": "exploremoco",
"version": "0.1.0",
"description": "",
"scripts": {
"start": "babel-node server/index.js",
"build": "rm -rf build/ && NODE_ENV=staging webpack --config webpack.config.js",
"compile": "rm -rf dist/ && babel server --out-dir dist --copy-files --presets modern-node,stage-0",
"lint": "eslint --ignore-path .gitignore client server",
"make-migration": "cd server && knex migrate:make",
"migrate-latest": "cd server && knex migrate:latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshjg/exploremoco.git"
},
"author": "Joshua Goldman",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshjg/exploremoco/issues"
},
"homepage": "https://github.com/joshjg/exploremoco",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-react-transform": "^2.0.2",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-modern-node": "^3.2.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.26.1",
"eslint": "^3.13.1",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.2",
"eslint-plugin-react": "^6.9.0",
"favicons-webpack-plugin": "0.0.7",
"file-loader": "^0.9.0",
"google-map-react": "^0.21.0",
"html-webpack-plugin": "^2.26.0",
"html-webpack-template": "^6.0.0",
"js-cookie": "^2.1.4",
"json-loader": "^0.5.4",
"material-ui": "^0.17.1",
"material-ui-chip-input": "^0.13.1",
"normalize.css": "^5.0.0",
"postcss-loader": "^1.2.2",
"raw-loader": "^0.5.1",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "^15.4.2",
"react-redux": "^5.0.2",
"react-responsive": "^1.2.5",
"react-router": "^3.0.1",
"react-router-redux": "^4.0.7",
"react-tap-event-plugin": "^2.0.1",
"react-tooltip": "^3.2.2",
"react-transform-catch-errors": "^1.0.2",
"redbox-react": "^1.3.3",
"redux": "^3.6.0",
"redux-devtools": "^3.3.2",
"redux-saga": "^0.14.2",
"rucksack-css": "^0.9.1",
"sqlite3": "^3.1.8",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2",
"whatwg-fetch": "^2.0.1"
},
"dependencies": {
"bcrypt": "^1.0.2",
"body-parser": "^1.15.2",
"chalk": "^1.1.3",
"connect-history-api-fallback": "^1.3.0",
"connect-redis": "^3.2.0",
"cookie-parser": "^1.4.3",
"dotenv": "^4.0.0",
"express": "^4.14.0",
"express-session": "^1.14.2",
"knex": "^0.12.6",
"objection": "^0.6.2",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"pg": "6.1.2",
"react-s3-uploader": "^3.4.0"
}
}