-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.59 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
{
"name": "@netsells/nuxt-auth-module",
"version": "5.0.5",
"description": "Authentication module for Nuxt.js",
"repository": {
"url": "https://github.com/netsells/nuxt-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",
"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-ts demo",
"heroku-postbuild": "nuxt-ts build demo",
"lint": "eslint --ext .ts,.js,.vue .",
"lint-fix": "yarn lint --fix",
"release": "yarn build && standard-version && git push --follow-tags && npm publish",
"start": "nuxt-ts start demo",
"test": "yarn lint && jest --runInBand"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"consola": "^2.15.3",
"cookie": "^0.4.1",
"defu": "^3.2.2",
"hasha": "^5.2.2",
"jwt-decode": "^3.1.2",
"requrl": "^3.0.2"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@babel/preset-typescript": "^7.12.13",
"@microsoft/api-documenter": "^7.12.7",
"@microsoft/api-extractor": "^7.13.1",
"@nuxt/test-utils": "^0.2.0",
"@nuxt/types": "latest",
"@nuxt/typescript-build": "latest",
"@nuxt/typescript-runtime": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/cookie-parser": "latest",
"@types/express-jwt": "latest",
"@types/jest": "latest",
"@types/jsonwebtoken": "latest",
"@types/lodash.get": "latest",
"@types/node": "latest",
"@types/puppeteer": "latest",
"babel-jest": "latest",
"bootstrap-vue": "latest",
"cookie-parser": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"express": "latest",
"express-jwt": "latest",
"jest": "^26.6.3",
"jiti": "^1.9.1",
"jsdom": "latest",
"lodash.get": "latest",
"nuxt": "^2.14.12",
"oidc-provider": "^6.29.9",
"playwright": "^1.8.1",
"prettier": "latest",
"siroc": "^0.6.3",
"standard-version": "latest",
"ts-jest": "latest",
"ts-loader": "^8.0.15",
"typescript": "latest",
"vue": "latest"
},
"peerDependencies": {
"vue": "*"
}
}