-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.14 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
{
"name": "yumemi-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"test": "jest",
"lint": "eslint --format compact --fix . && prettier --write .",
"preview": "vite preview",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"eslint --format compact --fix",
"prettier --write --ignore-unknown"
]
},
"dependencies": {
"@testing-library/user-event": "^14.5.1",
"@vercel/edge": "^1.1.0",
"axios": "^1.6.0",
"highcharts": "^11.2.0",
"highcharts-vue": "^1.4.3",
"vue": "^3.3.4"
},
"devDependencies": {
"@storybook/addon-essentials": "^7.5.2",
"@storybook/addon-interactions": "^7.5.2",
"@storybook/addon-links": "^7.5.2",
"@storybook/blocks": "^7.5.2",
"@storybook/testing-library": "^0.2.2",
"@storybook/testing-vue3": "^1.0.0",
"@storybook/vue3": "^7.5.2",
"@storybook/vue3-vite": "^7.5.2",
"@swc/core": "^1.3.95",
"@swc/jest": "^0.2.29",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/vue": "^8.0.0",
"@types/jest": "^29.5.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/vue3-jest": "^29.2.6",
"autoprefixer": "^10.4.16",
"dotenv": "^16.3.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-vue": "^9.18.1",
"husky": "^8.0.3",
"hygen": "^6.2.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.0.2",
"postcss": "^8.4.31",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.5.2",
"tailwindcss": "^3.3.5",
"typescript": "*",
"vite": "^4.4.5",
"vue-tsc": "^1.8.5"
}
}