-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.28 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
{
"name": "nuxt-apollo-auth",
"version": "0.0.190-dev",
"description": "Auth Module for nuxt-apollo",
"repository": "mAminP/nuxt-apollo-auth",
"license": "MIT",
"author": "Mohammad Amin Pasban",
"exports": {
".": {
"require": "./dist/module.js"
},
"./dist/module": {
"require": "./dist/module.js"
},
"./dist/runtime": {
"import": "./dist/runtime.mjs",
"require": "./dist/runtime.js"
}
},
"main": "./dist/module.js",
"typings": "./index.d.ts",
"files": [
"dist",
"templates",
"index.d.ts"
],
"scripts": {
"dev": "nuxt demo",
"server": "nodemon demo/api/auth.js",
"generate-types": "yarn generate-types:sh",
"generate-types:sh": "./scripts/generateGraphQlTypes.sh",
"test": "jest",
"build": "siroc build && yarn build:types",
"build:types": "./scripts/types.sh",
"release": "npm publish",
"lint:js": "eslint --ext \".ts,.js,.vue\" --ignore-path .gitignore . --fix",
"lint": "npm run lint:js",
"unpublish": "npm unpublish [email protected]"
},
"dependencies": {
"consola": "^2.15.3",
"defu": "^5.0.0",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.14.7",
"@graphql-codegen/cli": "^1.21.5",
"@graphql-codegen/typescript": "^1.22.0",
"@graphql-codegen/typescript-graphql-files-modules": "^1.18.1",
"@graphql-codegen/typescript-graphql-request": "^3.2.0",
"@graphql-codegen/typescript-operations": "^1.17.16",
"@graphql-codegen/typescript-vue-apollo": "^2.3.4",
"@nuxt/test-utils": "^0.2.2",
"@nuxt/types": "^2.15.7",
"@nuxt/typescript-build": "^2.1.0",
"@nuxtjs/apollo": "^4.0.1-rc.5",
"@nuxtjs/eslint-config-typescript": "^6.0.1",
"@nuxtjs/vuetify": "^1.12.1",
"@types/jest": "^26.0.23",
"@types/node": "latest",
"apollo-link": "^1.2.14",
"apollo-server": "^2.25.1",
"eslint": "^7.29.0",
"eslint-plugin-nuxt": "^2.0.0",
"graphql": "^15.5.0",
"graphql-tag": "^2.12.4",
"jest": "^27.0.4",
"jsdom": "^16.6.0",
"nuxt": "^2.15.7",
"nuxt-property-decorator": "^2.9.1",
"playwright": "^1.12.3",
"ts-jest": "^27.0.3",
"typescript": "^4.3.2",
"vue": "latest",
"vue-apollo": "^3.0.7"
},
"peerDependencies": {
"vue": "*"
}
}