forked from TYPO3-Headless/nuxt-typo3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·61 lines (61 loc) · 1.76 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
{
"name": "nuxt-typo3",
"version": "0.8.0",
"description": "TYPO3 Frontend rendered in Vue.js and Nuxt (frontend for EXT:headless)",
"license": "MIT",
"author": "Macopedia",
"contributors": [
{
"name": "Adam Marcinkowski <[email protected]>"
}
],
"main": "lib/module.js",
"repository": "https://github.com/TYPO3-Initiatives/nuxt-typo3",
"bugs": {
"url": "https://github.com/TYPO3-Initiatives/nuxt-typo3/issues"
},
"homepage": "https://github.com/TYPO3-Initiatives/nuxt-typo3#readme",
"keywords": [
"typo3",
"headless",
"nuxt",
"vue"
],
"scripts": {
"dev": "nuxt example",
"lint": "eslint --ignore-pattern '/lib/templates/plugins' --ext .js,.vue example lib test",
"lintfix": "eslint --fix --ext .js,.vue --ignore-pattern '/lib/templates/plugins' --ignore-path .gitignore .",
"test": "yarn lint && jest",
"release": "yarn test && standard-version && git push --follow-tags && npm publish"
},
"files": [
"lib"
],
"types": "./lib/types.d.ts",
"dependencies": {
"@braid/vue-formulate": "^2.4.2",
"@nuxtjs/axios": "^5.9.0",
"defu": "^2.0.4"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "latest",
"@nuxtjs/module-test-utils": "latest",
"babel-eslint": "latest",
"babel-jest": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-loader": "latest",
"eslint-plugin-nuxt": "latest",
"eslint-plugin-prettier": "latest",
"husky": "latest",
"jest": "latest",
"nuxt-edge": "latest",
"nuxt-i18n": "latest",
"set-value": "2.0.1",
"standard-version": "latest"
}
}