-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.38 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.38 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
{
"name": "hark.tv",
"version": "1.0.0",
"description": "A video streaming platform for activists, commentators, & civil servants.",
"author": "Hark Streaming Inc.",
"scripts": {
"dev": "cross-env NODE_ENV=development nuxt",
"dev:express": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"dev:nuxt": "nuxt",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production nuxt start",
"start:express": "cross-env NODE_ENV=production node server/index.js",
"start:nuxt": "cross-env NODE_ENV=production nuxt start",
"generate": "nuxt generate",
"docker:build": "docker build -t jeremyboetticherhark/hark-frontend:latest .",
"docker:push": "docker push jeremyboetticherhark/hark-frontend:latest"
},
"dependencies": {
"@bitwave/chat-client": "^0.3.10",
"@hcaptcha/vue-hcaptcha": "^0.2.4",
"@nuxtjs/axios": "^5.12.5",
"@nuxtjs/component-cache": "^1.1.6",
"@nuxtjs/device": "^1.2.7",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/manifest": "^3.0.0-beta.16",
"@nuxtjs/pwa": "^3.3.4",
"@nuxtjs/sentry": "^5.0.0",
"@nuxtjs/toast": "^3.3.1",
"@sentry/browser": "^6.0.1",
"@videojs/http-streaming": "^2.5.0",
"babel-runtime": "^6.26.0",
"braintree-web-drop-in": "^1.25.0",
"chart.js": "^2.9.4",
"cookie-universal-nuxt": "^2.1.4",
"cross-env": "^7.0.3",
"dashjs": "^3.2.0",
"express": "^4.17.1",
"firebase": "^8.2.4",
"fuse.js": "^6.4.6",
"hls.js": "^0.13.2-canary.4496",
"jwt-decode": "^3.1.2",
"marked": "^0.7.0",
"moment": "^2.29.1",
"nuxt": "^2.14.12",
"nuxt-socket-io": "^1.1.17",
"nuxt-stripe-module": "^2.1.0",
"pure-vue-chart": "^0.4.0",
"sass-loader": "^10.1.1",
"socket.io-client": "^2.3.1",
"video.js": "^7.10.2",
"videojs-contrib-dash": "^4.0.0",
"videojs-contrib-quality-levels": "^2.0.9",
"videojs-hls-quality-selector": "^1.1.4",
"videojs-youtube": "^2.6.1",
"vue-awesome-countdown": "^1.1.4",
"vue-chartjs": "^3.5.1",
"vue-clipboard2": "^0.3.1",
"vue-poll": "^0.1.8"
},
"devDependencies": {
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/vuetify": "^1.11.3",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"node-sass": "^5.0.0",
"nodemon": "^2.0.7",
"stylus": "^0.54.8",
"stylus-loader": "^4.3.3",
"vue": "^2.6.12"
}
}