generated from druxt/module-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.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
{
"name": "druxt-auth",
"version": "0.4.0",
"keywords": [
"auth",
"authentication",
"drupal",
"druxt",
"module",
"nuxt",
"oauth"
],
"exports": {
".": {
"require": "./dist/index.ssr.js",
"import": "./dist/index.esm.js"
}
},
"main": "dist/index.ssr.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"templates"
],
"scripts": {
"build": "siroc build",
"build:watch": "siroc build --watch",
"changeset": "changeset",
"example": "cd example/nuxt && yarn && yarn dev",
"lint": "eslint --ext .js,.vue src",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@nuxtjs/auth-next": "^5.0.0-1667386184.dfbbb54"
},
"devDependencies": {
"@babel/core": "7.22.9",
"@babel/preset-env": "7.22.9",
"@changesets/cli": "^2.26.2",
"@vue/test-utils": "1.3.6",
"babel-core": "7.0.0-bridge.0",
"druxt": "0.23.0",
"esbuild-jest": "0.5.0",
"eslint": "8.45.0",
"eslint-plugin-nuxt": "3.2.0",
"jest": "27.5.1",
"jest-junit": "^14.0.1",
"siroc": "0.16.0",
"vue-jest": "3.0.7",
"vue-template-compiler": "^2.7.14"
},
"peerDependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.2"
},
"publishConfig": {
"access": "public"
}
}