This repository has been archived by the owner on Dec 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.52 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "filmkever",
"version": "1.0.0",
"description": "My free movie watching project",
"author": "Arkymai",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --ignore-path .eslintignore .",
"lint-fix": "eslint --ext .js,.vue --ignore-path .gitignore --ignore-path .eslintignore . --fix",
"test": "ava",
"test:unit": "cross-env TEST=unit ava ./test/specs/**/*",
"test:e2e": "cross-env TEST=e2e ava ./test/e2e/**/*"
},
"dependencies": {
"@nuxtjs/apollo": "^4.0.0-rc9",
"@nuxtjs/axios": "^5.12.0",
"@nuxtjs/pwa": "^3.0.0-0",
"autoprefixer": "^9.8.5",
"bcryptjs": "^2.4.3",
"cheerio": "^1.0.0-rc.3",
"cloudscraper": "^4.6.0",
"connect-pg-simple": "^6.1.0",
"cookie-parser": "^1.4.5",
"core-js": "^2.6.11",
"crypto-js": "^4.0.0",
"express": "^4.16.4",
"express-graphql": "^0.9.0",
"express-session": "^1.17.1",
"fanart.tv": "^2.1.0",
"filepursuit": "https://dopemodules.ams3.cdn.digitaloceanspaces.com/filepursuit.tar.gz",
"graphql-fields": "^2.0.3",
"graphql-import": "^1.0.2",
"graphql-passport": "^0.6.3",
"graphql-subscriptions": "^1.1.0",
"i": "^0.3.6",
"join-monster": "^2.1.2",
"join-monster-graphql-tools-adapter": "^0.1.0",
"jsonp": "^0.2.1",
"keyv-postgres-shrink": "^1.0.15",
"mdata": "^1.0.1",
"nested-object-assign": "^1.0.3",
"npm": "^6.14.6",
"nuxt": "^2.13.3",
"nuxt-rfg-icon": "^0.6.4",
"passport": "^0.4.1",
"pg-promise": "^10.5.8",
"postcss-cli": "^7.1.1",
"request": "^2.88.2",
"restify": "^8.5.1",
"spider-detector": "^2.0.0",
"themoviedb-api-client": "^1.1.0",
"trakt.tv-cached": "^3.0.1",
"trakt.tv-queued": "^3.0.0",
"universal-cookie": "^4.0.3",
"vee-validate": "^3.3.7",
"vue-meta": "^2.4.0",
"vuebar": "0.0.20",
"vuelidate": "^0.7.5",
"vuetify": "^2.3.4",
"vuex-persistedstate": "^2.7.1"
},
"devDependencies": {
"@ava/babel": "^1.0.0",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/eslint-config": "^2.0.0",
"@nuxtjs/eslint-module": "^1.2.0",
"@nuxtjs/style-resources": "^1.0.0",
"@nuxtjs/stylelint-module": "^3.1.0",
"@nuxtjs/svg": "^0.1.11",
"@nuxtjs/vuetify": "^1.11.2",
"@vue/cli-shared-utils": "^4.4.6",
"@vue/test-utils": "^1.0.3",
"ava": "^3.10.1",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^3.2.0",
"browser-env": "^3.2.5",
"bufferutil": "^4.0.1",
"cross-env": "^5.2.1",
"dotenv": "^8.2.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-nuxt": "^0.5.2",
"eslint-plugin-prettier": "^3.1.4",
"graphql": "^14.7.0",
"graphql-tag": "^2.10.4",
"material-design-icons-iconfont": "^5.0.1",
"node-sass": "^4.14.1",
"nodemon": "^1.19.4",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^1.0.0",
"require-extension-hooks-vue": "^2.0.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"stylelint": "^10.1.0",
"tar-dependency": "0.0.3",
"trakt.tv": "^7.2.0",
"typescript": "^3.9.7",
"utf-8-validate": "^5.0.2",
"vue-loader": "^15.9.3",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "^2.6.11",
"vuetify-loader": "^1.6.0"
}
}