-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 3.4 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@morpheme/nuxt-starter",
"type": "module",
"version": "0.5.2",
"description": "GITS Nuxt Starter",
"main": "./nuxt.config.ts",
"files": [
"assets",
"components",
"layouts",
"locales",
"pages",
"plugins",
"public",
"stores",
"utils",
".eslintignore",
".eslintrc",
"app.config.ts",
"app.vue",
"commitlint.config.js",
"nuxt.config.ts",
"tailwind.config.js"
],
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"start": "node .output/server/index.mjs",
"test:unit": "vitest",
"test:dev": "NUXT_VITEST_DEV_TEST=true nuxt dev",
"test": "pnpm test:unit --run && pnpm test:dev",
"coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "standard-version",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@heroicons/vue": "^2.1.3",
"@morpheme/nuxt": "^1.0.0-rc.10",
"@nuxt/image": "^1.5.0",
"@pinia/nuxt": "^0.5.1",
"@tanstack/vue-query": "^5.29.0",
"@vueuse/core": "^10.9.0",
"@vueuse/nuxt": "^10.9.0",
"axios": "^1.7.2",
"jwt-decode": "^4.0.0",
"pinia": "^2.1.7"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.6",
"@babel/core": "^7.22.10",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@nuxt/fonts": "^0.7.0",
"@nuxt/test-utils": "^3.12.1",
"@nuxtjs/storybook": "7.0.0",
"@nuxtjs/tailwindcss": "^6.11.4",
"@pinia-plugin-persistedstate/nuxt": "^1.2.0",
"@storybook-vue/nuxt": "0.1.7",
"@storybook/addon-actions": "^7.4.6",
"@storybook/addon-essentials": "7.5.0-alpha.3",
"@storybook/addon-interactions": "7.5.0-alpha.3",
"@storybook/addon-links": "7.5.0-alpha.3",
"@storybook/addon-mdx-gfm": "^7.4.6",
"@storybook/blocks": "7.5.0-alpha.3",
"@storybook/builder-vite": "7.5.0-alpha.3",
"@storybook/testing-library": "^0.2.0",
"@storybook/vue3": "7.5.0-alpha.3",
"@storybook/vue3-vite": "^7.4.6",
"@testing-library/vue": "^8.0.3",
"@types/node": "^18.17.5",
"@vitest/coverage-v8": "^1.5.0",
"@vue/test-utils": "~2.4.5",
"babel-loader": "^9.1.3",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.47.0",
"eslint-plugin-storybook": "^0.6.14",
"happy-dom": "^12.10.3",
"husky": "^8.0.3",
"jsdom": "^22.1.0",
"lint-staged": "^13.3.0",
"nuxt": "^3.12.1",
"playwright-core": "^1.43.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.65.1",
"standard-version": "^9.5.0",
"storybook": "7.5.0-alpha.3",
"vitest": "^1.5.0",
"vitest-environment-nuxt": "^1.0.0",
"vitest-sonar-reporter": "^2.0.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,html,css,vue}": "npm run lint:fix"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"pnpm": {
"overrides": {
"@babel/plugin-proposal-class-properties": "npm:@babel/plugin-transform-class-properties",
"@babel/plugin-proposal-optional-chaining": "npm:@babel/plugin-transform-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator": "npm:@babel/plugin-transform-nullish-coalescing-operator"
}
}
}