forked from RaidersOfTheLostApp/MoviePublic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.53 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
92
93
94
95
96
{
"name": "course.thesis",
"version": "1.0.0",
"scripts": {
"start": "nodemon server/index.js",
"startm": "nodemon searchserver/index.js",
"server-dev": "nodemon server",
"test": "NODE_ENV=test grunt test",
"build": "webpack --watch",
"knex": "knex migrate:rollback",
"knex2": "knex seed:run",
"redis": "redis-server",
"heroku-postbuild": "yarn run webpack -p"
},
"author": "Hack Reactor",
"license": "MIT",
"dependencies": {
"agenda": "^1.0.0",
"async": "^2.5.0",
"axios": "^0.16.2",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-latest": "^6.24.1",
"babel-preset-react": "^6.24.1",
"bcrypt-nodejs": "^0.0.3",
"bluebird": "^3.5.0",
"body-parser": "^1.18.0",
"bookshelf": "^0.10.4",
"config": "^1.26.2",
"connect-flash": "^0.1.1",
"connect-redis": "^3.3.0",
"cookie-parser": "^1.4.3",
"cron": "^1.3.0",
"ejs": "^2.5.7",
"eslint": "^4.6.1",
"express": "^4.15.4",
"express-session": "^1.15.5",
"flexbox-react": "^4.4.0",
"fuse": "^0.4.0",
"fuse.js": "^3.1.0",
"global": "^4.3.2",
"grunt-http": "^2.2.0",
"grunt-pg": "https://github.com/watsoncj/grunt-pg.git",
"hawk": "^6.0.2",
"hulu-api-client": "^1.0.1",
"jquery": "^3.2.1",
"knex": "^0.13.0",
"kue": "^0.11.6",
"material-design-icons": "^3.0.1",
"material-ui": "^0.19.1",
"material-ui-icons": "^1.0.0-beta.5",
"mongodb": "^2.2.31",
"mongoose": "^4.11.11",
"morgan": "^1.8.2",
"omdb": "^0.8.0",
"passport": "^0.4.0",
"passport-facebook": "^2.1.1",
"passport-google-oauth": "^1.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4",
"pg": "^7.3.0",
"querystring": "^0.2.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-material-icons": "^1.0.2",
"react-player": "^0.24.2",
"react-router-dom": "^4.2.2",
"redis": "^2.8.0",
"redis-server": "^1.1.0",
"tmdb": "^0.0.1",
"twilio": "^3.6.7",
"url-parse": "^1.1.9",
"webpack": "^3.5.6",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"chai": "^4.1.2",
"grunt": "^1.0.1",
"grunt-eslint": "^20.1.0",
"grunt-mocha-test": "^0.13.2",
"mocha": "^3.5.3",
"node-mocks-http": "^1.6.4",
"supertest": "^3.0.0",
"webpack-dev-server": "^2.7.1"
},
"babel": {
"plugins": [
"transform-es2015-modules-commonjs"
]
},
"engines": {
"node": "8.4",
"yarn": "1.0.1"
}
}