-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.01 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": "@remindgmbh/nuxt-typo3",
"version": "0.0.0-development",
"author": "David Mellen <[email protected]>",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+https://github.com/remindgmbh/nuxt-typo3.git"
},
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"dev": "npm run dev:prepare && nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"lint": "npm run lint:script && npm run lint:style",
"lint:script": "eslint .",
"lint:style": "stylelint \"**/*.{vue,[s]css}\"",
"prepack": "npm run dev:prepare && nuxt-module-build build",
"preview": "nuxi preview playground",
"static-analysis": "npm run dev:prepare && npm run typecheck && npm run lint",
"typecheck": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"@remindgmbh/nuxt-logger": "^1.0.3",
"defu": "^6.1.4",
"filesize": "^10.1.6",
"focus-trap": "^7.6.0",
"perfect-debounce": "^1.0.0",
"sass": "^1.79.4",
"scule": "^1.3.0",
"vee-validate": "^4.13.2",
"vue-i18n": "^10.0.4",
"yup": "^1.4.0"
},
"devDependencies": {
"@nuxt/module-builder": "^0.8.4",
"@nuxt/schema": "^3.13.2",
"@remindgmbh/eslint-config-nuxt": "^2.0.0",
"@remindgmbh/stylelint-config": "^1.1.1",
"@types/node": "^22.7.5",
"eslint": "^9.12.0",
"nuxt": "^3.13.2",
"prettier": "^3.3.3",
"stylelint": "^16.9.0",
"typescript": "^5.6.2",
"vue-tsc": "^2.0.28"
}
}