forked from nuxt-community/auth-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.88 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
{
"name": "@nuxtjs/auth",
"version": "4.9.0",
"description": "Authentication module for Nuxt.js",
"repository": "nuxt-community/auth-module",
"license": "MIT",
"main": "./dist/module/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"templates"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"esmodules": true
}
}
]
]
},
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"dev": "nuxt-ts demo",
"heroku-postbuild": "nuxt-ts build demo",
"lint": "eslint --ext .ts,.js,.vue .",
"lint-fix": "yarn lint --fix",
"release": "yarn clean && yarn build && standard-version && git push --follow-tags && npm publish",
"start": "nuxt-ts start demo",
"test": "yarn lint && yarn build && nuxt build test/fixture && jest"
},
"dependencies": {
"@nuxtjs/axios": "^5.12.0",
"body-parser": "^1.19.0",
"consola": "^2.14.0",
"cookie": "^0.4.1",
"defu": "^2.0.4",
"js-cookie": "^2.2.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.19",
"nanoid": "^3.1.10",
"requrl": "^2.0.1"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@nuxt/types": "latest",
"@nuxt/typescript-build": "latest",
"@nuxt/typescript-runtime": "latest",
"@nuxtjs/eslint-config-typescript": "latest",
"@types/jest": "latest",
"@types/node": "latest",
"@types/puppeteer": "latest",
"babel-jest": "latest",
"bootstrap-vue": "latest",
"cookie-parser": "latest",
"eslint": "latest",
"express": "latest",
"express-jwt": "latest",
"get-port": "latest",
"jest": "latest",
"jsdom": "latest",
"lodash.get": "latest",
"nuxt-edge": "latest",
"puppeteer": "latest",
"standard-version": "latest",
"ts-jest": "latest",
"typescript": "latest"
}
}