forked from jaquire/share_crow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "share_crow",
"version": "1.0.0",
"description": "digital renting marketplace",
"main": "server.js",
"dependencies": {
"aws-sdk": "^2.4.2",
"babel-cli": "^6.10.1",
"bcrypt": "^0.8.7",
"bluebird": "^3.4.1",
"body-parser": "^1.15.1",
"braintree-web": "^2.26.0",
"connect-redis": "^3.1.0",
"cookie-session": "^2.0.0-alpha.1",
"debounce": "^1.0.0",
"eslint": "^2.13.0",
"express": "^4.14.0",
"express-session": "^1.13.0",
"fetch": "^1.1.0",
"fs": "0.0.2",
"graceful-fs": "^4.1.4",
"griddle-react": "^0.6.1",
"isomorphic-fetch": "^2.2.1",
"material-design-icons": "^2.2.3",
"node-fetch": "^1.5.3",
"node-sass": "^3.8.0",
"nodemon": "^1.9.2",
"passport": "^0.3.2",
"path": "^0.12.7",
"pg": "^5.1.0",
"precommit-hook": "^3.0.0",
"react": "^15.2.0",
"react-addons-css-transition-group": "^15.2.0",
"react-dom": "^15.1.0",
"react-google-maps": "^4.11.0",
"react-lazyload": "^2.1.3",
"react-modal": "^1.3.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"react-slick": "^0.12.2",
"react-star-rating-component": "^1.0.0",
"react-stripe-checkout": "^1.8.0",
"react-tabs": "^0.7.0",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0",
"request": "^2.72.0",
"s3": "^4.4.0",
"sequelize": "^3.23.3",
"stripe": "^4.7.0",
"superagent": "^2.0.0",
"twilio": "^2.9.1",
"webpack": "^1.13.1"
},
"devDependencies": {
"babel-core": "^6.4.5",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.3.13",
"babel-register": "^6.9.0",
"babelify": "^7.3.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.12.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "^5.2.1",
"file-loader": "^0.9.0",
"mocha": "^2.5.3",
"sass-loader": "^3.2.1",
"style-loader": "^0.13.1",
"tape": "^4.6.0"
},
"scripts": {
"lint": "eslint --quiet server/ && eslint --quiet client/",
"watch": "(npm run watch-server & npm run watch-client) && npm run server",
"start": "npm run lint && npm run watch",
"server": "nodemon dev/server/server.js",
"watch-server": "babel --watch server/ -d dev/server",
"watch-client": "webpack --watch --progress",
"dbTest": "tape Tests/dbTests.js | faucet",
"apiTest": "tape Tests/apiTests.js | faucet",
"test": "npm run dbTest",
"validate": "npm ls"
},
"pre-commit": [
"lint",
"validate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/b-chou/share_crow.git"
},
"keywords": [
"share",
"crow",
"rent",
"jaquire"
],
"author": "ben chou",
"license": "ISC",
"bugs": {
"url": "https://github.com/b-chou/share_crow/issues"
},
"homepage": "https://github.com/b-chou/share_crow#readme"
}