-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
69 lines (69 loc) · 1.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
{
"name": "hypertube",
"version": "1.0.0",
"scripts": {
"start-client": "cd client && npm run start",
"start-server": "nodemon --exec babel-node --ignore client server",
"start-db": "mongod --dbpath ./db",
"start-dev": "concurrently --kill-others-on-fail 'npm run start-server' 'npm run start-client'"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"express-session": "^1.15.6",
"ffprobe": "^1.1.0",
"fluent-ffmpeg": "^2.1.2",
"htmlparser2": "^3.9.2",
"is-jpg": "^2.0.0",
"is-png": "^1.1.0",
"jsonwebtoken": "^8.2.2",
"lodash": "^4.17.10",
"moment-timezone": "^0.5.21",
"mongoose": "^5.1.5",
"morgan": "^1.9.0",
"moviedb": "^0.2.10",
"multer": "^1.3.0",
"node-ffprobe": "^1.2.2",
"nodemailer": "^4.6.7",
"passport": "^0.4.0",
"passport-42": "^1.2.4",
"passport-github2": "^0.1.11",
"passport-google-oauth": "^1.0.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"read-chunk": "^2.1.0",
"request": "^2.87.0",
"rimraf": "^2.6.2",
"torrent-stream": "^1.0.4",
"universal-cookie": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"concurrently": "^3.5.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-react-app": "^2.1.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"nodemon": "^1.17.5"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-es2015-destructuring",
"transform-object-rest-spread"
]
}
}