-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "drivel-tv",
"version": "1.0.0",
"description": "Drivel TV is a web app that allows users to browse and create live broadcasts with their favourite video content.",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "cd client && npm install && npm run build",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jofri/drivel-tv.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jofri/drivel-tv/issues"
},
"homepage": "https://github.com/jofri/drivel-tv#readme",
"dependencies": {
"dotenv": "^8.2.0",
"eslint-plugin-json": "^2.1.2",
"express": "^4.17.1",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"mongoose": "^5.10.13",
"nanoid": "^3.1.16",
"node-fetch": "^2.6.1",
"node-schedule": "^1.3.2",
"nodemon": "^2.0.6",
"socket.io": "^3.0.1"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-plugin-react": "^7.21.5"
}
}