-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.41 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": "@roadiz/nuxt-module",
"version": "3.0.1",
"description": "Nuxt Typescript module for Roadiz API client.",
"main": "dist/module.js",
"types": "dist/module.d.ts",
"repository": "[email protected]:roadiz/nuxt-module.git",
"author": "Ambroise Maupate <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"nuxt",
"module",
"nuxt-module",
"roadiz",
"cms"
],
"scripts": {
"build": "tsc -p tsconfig-build.json",
"prepublishOnly": "yarn build",
"lint": "eslint --fix --ext \".js,.ts,.json\" ./src"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@roadiz/abstract-api-client": "^3.1.0",
"axios": "^0.21.1"
},
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/plugin-transform-runtime": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-typescript": "^7.14.5",
"@nuxt/types": "^2.15.7",
"@nuxt/typescript-build": "^2.1.0",
"@nuxt/vue-app": "^2.15.7",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"nuxt": "^2.15.7",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
}
}