-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
52 lines (52 loc) · 1.55 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
{
"name": "fuxt",
"version": "4.0.0",
"private": true,
"type": "module",
"engines": {
"node": "22.x"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"lint": "eslint .",
"format": "eslint . --fix",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"storybook": "STORYBOOK=true storybook dev -p 6006",
"build-storybook": "STORYBOOK=true storybook build"
},
"dependencies": {
"nuxt": "^3.13.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.4",
"@csstools/postcss-global-data": "^3.0.0",
"@nuxt/eslint-config": "^0.7.0",
"@nuxt/fonts": "^0.10.0",
"@nuxtjs/sitemap": "6.0.1",
"@nuxtjs/storybook": "^8.2.0",
"@pinia/nuxt": "^0.5.1",
"@storybook/addon-essentials": "^8.3.0",
"@storybook/addon-links": "^8.3.0",
"@storybook/vue3": "^8.3.0",
"@types/node": "^22.5.5",
"@vueuse/core": "^11.1.0",
"@vueuse/nuxt": "^11.1.0",
"eslint": "^9.14.0",
"eslint-plugin-format": "^0.1.2",
"eslint-plugin-jsonc": "^2.18.2",
"jsonc-eslint-parser": "^2.4.0",
"nuxt-lodash": "^2.5.3",
"nuxt-svgo": "^4.0.6",
"pinia": "^2.1.7",
"postcss": "^8.4.47",
"postcss-custom-media": "^11.0.1",
"postcss-nested": "^6.2.0",
"prettier": "^3.3.3",
"storybook": "^8.3.0",
"typescript": "^5.6.3",
"vue": "^3.4.36"
}
}