-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"name": "nuxt-custom-elements-example",
"description": "Examples for Nuxt Custom-Elements.",
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "husky install",
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"test": "npm run lint",
"lint": "npm run lint:es && npm run lint:css",
"lint:es": "eslint --ext .js,.vue .",
"lint:css": "stylelint \"examples/**/*.vue\" \"examples/**/*.css\""
},
"dependencies": {
"@nuxtjs/i18n": "^7.2.2",
"@nuxtjs/vuetify": "1.12.3",
"core-js": "3.23.5",
"nuxt": "2.15.8",
"nuxt-custom-elements": "1.9.1",
"vue-meta": "2.4.0",
"webpack-dynamic-public-path": "^1.0.8",
"postcss-nesting": "10.1.10",
"tailwindcss": "3.1.6"
},
"devDependencies": {
"@babel/eslint-parser": "7.18.2",
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@nuxt/postcss8": "1.1.3",
"@nuxtjs/eslint-config": "10.0.0",
"@nuxtjs/eslint-module": "3.1.0",
"@nuxtjs/stylelint-module": "4.1.0",
"@nuxtjs/tailwindcss": "4.2.1",
"autoprefixer": "10.4.7",
"eslint": "8.20.0",
"eslint-plugin-nuxt": "3.2.0",
"eslint-plugin-vue": "9.2.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"postcss-html": "1.5.0",
"stylelint": "14.9.1",
"stylelint-config-recess-order": "3.0.0",
"stylelint-config-standard": "26.0.0"
}
}