-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.63 KB
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
72
73
74
75
76
77
78
{
"browserslist": [
"defaults"
],
"dependencies": {
"@phosphor-icons/vue": "^2.2.1",
"crypto-js": "^4.2.0",
"nuxt": "^3.17.3",
"nuxt-swiper": "^2.0.1",
"vue": "latest"
},
"devDependencies": {
"@chromatic-com/storybook": "3.2.6",
"@csstools/postcss-global-data": "^3.0.0",
"@eslint/compat": "^1.2.9",
"@nuxt/eslint": "^1.3.1",
"@nuxt/test-utils": "^3.18.0",
"@nuxtjs/storybook": "8.3.3",
"@nuxtjs/stylelint-module": "^5.2.1",
"@storybook/addon-essentials": "8.4.7",
"@storybook/addon-links": "8.4.7",
"@storybook/blocks": "8.4.7",
"@storybook/test": "8.4.7",
"@types/crypto-js": "^4.2.2",
"@vite-pwa/assets-generator": "^1.0.0",
"@vite-pwa/nuxt": "^1.0.0",
"@vitest/coverage-istanbul": "3.1.3",
"@vue/test-utils": "^2.4.6",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-perfectionist": "^4.12.3",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-vitest": "^0.5.4",
"eslint-plugin-vue": "^9.33.0",
"happy-dom": "^17.4.7",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"playwright-core": "^1.52.0",
"postcss-custom-media": "^11.0.5",
"postcss-extend-rule": "^4.0.0",
"postcss-html": "^1.8.0",
"postcss-preset-env": "^10.1.6",
"postcss-pxtorem": "^6.1.0",
"postcss-rem": "^3.0.0",
"prettier": "^3.5.3",
"storybook": "8.4.7",
"stylelint": "^16.19.1",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-recommended-vue": "^1.6.0",
"stylelint-config-standard": "^38.0.0",
"typescript": "^5.8.3",
"vitest": "^3.1.3",
"vue-tsc": "^2.2.10"
},
"name": "nuxt-app",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"private": true,
"scripts": {
"build": "nuxt build",
"build-storybook": "storybook build",
"check-types": "vue-tsc --noEmit",
"dev": "yarn postinstall && nuxt dev --open",
"generate": "nuxt generate",
"lint": "yarn postinstall && yarn lint:scripts && yarn check-types && yarn lint:styles",
"lint:fix": "yarn postinstall && yarn lint:scripts:fix && yarn lint:styles:fix",
"lint:scripts": "eslint .",
"lint:scripts:fix": "yarn lint:scripts --fix",
"lint:styles": "stylelint --ignore-path .gitignore '**/*.{css,vue}'",
"lint:styles:fix": "yarn lint:styles --fix",
"postinstall": "nuxt prepare",
"prepare": "husky",
"preview": "nuxt preview",
"storybook": "storybook dev -p 6006",
"test": "vitest",
"test:once": "yarn test --run"
},
"type": "module"
}