forked from TYPO3-Headless/nuxt-typo3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·71 lines (71 loc) · 1.99 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
{
"name": "nuxt-typo3",
"version": "1.1.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 --ext .js,.vue example lib",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"test": "yarn jest",
"commitlint": "commitlint --verbose",
"prerelease": "yarn test && standard-version --prerelease alpha && git push --follow-tags && npm publish --tag alpha",
"release": "yarn test && standard-version && git push --follow-tags && npm publish",
"prepare": "husky install"
},
"files": [
"lib",
"vetur"
],
"types": "./lib/types.d.ts",
"vetur": {
"tags": "vetur/tags.json",
"attributes": "vetur/attributes.json"
},
"dependencies": {
"@nuxtjs/axios": "^5.13.6",
"vee-validate": "^3.4.14"
},
"devDependencies": {
"@babel/core": "latest",
"@babel/eslint-parser": "latest",
"@babel/preset-env": "latest",
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@nuxtjs/eslint-config": "11.0.0",
"@nuxtjs/eslint-module": "latest",
"@nuxtjs/i18n": "latest",
"@nuxtjs/module-test-utils": "latest",
"@vue/test-utils": "^1.3.0",
"@vue/vue2-jest": "28",
"babel-jest": "latest",
"eslint": "latest",
"eslint-plugin-nuxt": "latest",
"husky": "latest",
"jest": "latest",
"jest-environment-jsdom": "latest",
"nuxt-edge": "latest",
"standard-version": "latest"
},
"volta": {
"node": "14.20.0"
}
}