-
Notifications
You must be signed in to change notification settings - Fork 927
/
package.json
97 lines (97 loc) · 2.68 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
{
"name": "@nuxtjs/auth",
"version": "5.0.0-dev",
"description": "Authentication module for Nuxt.js",
"repository": "nuxt-community/auth-module",
"license": "MIT",
"sideEffects": "false",
"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",
"types": "./dist/index.d.ts",
"typings": "./index.d.ts",
"files": [
"dist",
"templates",
"index.d.ts"
],
"scripts": {
"build": "siroc build && yarn build:types",
"build:types": "./scripts/types.sh",
"bump-next": "jiti ./scripts/bump-next",
"dev": "nuxt demo",
"heroku-postbuild": "nuxt build demo",
"lint": "eslint --ext .ts,.js,.vue . && prettier --check .",
"lint-fix": "eslint --ext .ts,.js,.vue --fix . && prettier --write .",
"release": "yarn build && standard-version && git push --follow-tags && npm publish",
"start": "nuxt start demo",
"test": "yarn lint && jest"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"axios": "^0.26.1",
"body-parser": "^1.19.2",
"consola": "^2.15.3",
"cookie": "^0.4.2",
"defu": "^5.0.1",
"hasha": "^5.2.2",
"jwt-decode": "^3.1.2",
"requrl": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@microsoft/api-documenter": "^7.17.0",
"@microsoft/api-extractor": "^7.20.0",
"@nuxt/test-utils": "^0.2.2",
"@nuxt/types": "^2.15.8",
"@nuxt/typescript-build": "^2.1.0",
"@nuxt/typescript-runtime": "^2.1.0",
"@nuxtjs/eslint-config-typescript": "^9.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express-jwt": "^6.0.4",
"@types/jest": "^27.4.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/lodash.get": "^4.4.6",
"@types/node": "^16.11.26",
"@types/puppeteer": "^5.4.5",
"babel-jest": "^27.5.1",
"bootstrap-vue": "^2.21.2",
"cookie-parser": "^1.4.6",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"express": "^4.17.3",
"express-jwt": "^6.1.1",
"jest": "^27.5.1",
"jiti": "^1.13.0",
"jquery": "^3.6.0",
"jsdom": "^19.0.0",
"lodash.get": "^4.4.2",
"nuxt": "^2.15.8",
"oidc-provider": "^7.10.6",
"playwright": "^1.20.1",
"prettier": "^2.6.1",
"siroc": "^0.16.0",
"standard-version": "^9.3.2",
"ts-jest": "^27.1.4",
"ts-loader": "^8.3.0",
"typescript": "^4.6.3",
"vue": "2.6.14",
"webpack": "<5"
},
"peerDependencies": {
"vue": "*"
}
}