-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.65 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
{
"name": "themage",
"description": "Generate UI theme by image",
"version": "0.1.0",
"author": "Pau Yankovski <https://github.com/pyncz>",
"license": "MIT",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lintfix": "nr lint --fix"
},
"dependencies": {
"@headlessui/tailwindcss": "^0.1.2",
"@headlessui/vue": "latest",
"@nuxtjs/critters": "^0.3.3",
"@nuxtjs/fontaine": "^0.2.4",
"@nuxtjs/i18n-edge": "^8.0.0-beta.9-27948515.3db6367",
"@pinia/nuxt": "^0.4.7",
"@pyncz/tailwind-mask-image": "^2.0.0",
"@vuelidate/core": "^2.0.2",
"@vuelidate/validators": "^2.0.2",
"@vueuse/core": "^9.13.0",
"@vueuse/nuxt": "^9.13.0",
"buffer": "^6.0.3",
"chroma-js": "^2.4.2",
"colorthief": "^2.4.0",
"nuxt-icon": "^0.3.3",
"sass": "^1.60.0",
"tailwindcss": "^3.3.0",
"typescript": "^4.9.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.26.3",
"@antfu/ni": "^0.10.2",
"@nuxtjs/color-mode": "^3.2.0",
"@types/chroma-js": "^2.4.0",
"@types/node": "^18.15.10",
"@types/uuid": "^9.0.1",
"@voire/type-utils": "^1.2.1",
"@vue-macros/nuxt": "^1.2.7",
"autoprefixer": "^10.4.14",
"eslint": "^8.36.0",
"lint-staged": "^13.2.0",
"nuxt": "^3.3.2",
"postcss": "^8.4.21",
"simple-git": "^3.17.0",
"simple-git-hooks": "^2.8.1"
},
"simple-git-hooks": {
"pre-commit": "nr lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue}": [
"eslint --fix"
]
}
}