-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.21 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
{
"name": "@voorhoede/nuxt-datocms-module",
"version": "1.0.3",
"description": "Nuxt module for querying and subscribing to dato's GraphQL API",
"repository": "[email protected]:voorhoede/nuxt-datocms-module.git",
"license": "MIT",
"contributors": [
{
"name": "Voorhoede"
}
],
"main": "./lib/module.js",
"types": "./types/index.d.ts",
"files": [
"types",
"lib"
],
"scripts": {
"dev": "nuxt example",
"lint": "eslint --ext .js,.vue .",
"test": "yarn lint && jest"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/eslint-parser": "^7.16.5",
"@babel/preset-env": "latest",
"@nuxt/test-utils": "^0.2.2",
"@nuxt/types": "^2.15.8",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"fetch-mock": "^9.11.0",
"jest": "latest",
"npm-run-all": "^4.1.5",
"nuxt-edge": "latest",
"playwright": "^1.17.1"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"datocms-listen": "^0.1.6",
"isomorphic-fetch": "^3.0.0"
}
}