-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.17 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
{
"name": "game-story-edit",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && cp ./dist/index.html ./dist/404.html",
"preview": "vite preview",
"prepare": "husky install",
"lint": "prettier --config .prettierrc.json --write .",
"check": "vue-tsc --noEmit"
},
"lint-staged": {
"src/**/*.{ts,js,vue}": [
"prettier --config .prettierrc.json --write",
"git add"
],
"*.md": [
"prettier --config .prettierrc.json --write",
"git add"
]
},
"dependencies": {
"@arco-plugins/vite-vue": "1.4.5",
"@csstools/css-parser-algorithms": "2.5.0",
"@csstools/css-tokenizer": "2.2.3",
"@trivago/prettier-plugin-sort-imports": "4.3.0",
"@typescript-eslint/eslint-plugin": "6.19.0",
"@vitejs/plugin-legacy": "5.2.0",
"@vitejs/plugin-vue": "5.0.3",
"@vue/eslint-config-typescript": "12.0.0",
"@vueuse/core": "10.7.2",
"axios": "^1.6.0",
"dayjs": "^1.11.10",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-sort-exports": "0.8.0",
"file-saver": "2.0.5",
"howler": "^2.2.4",
"husky": "8.0.3",
"lodash-es": "4.17.21",
"mitt": "3.0.1",
"pinia": "2.1.7",
"postcss-plugin-px2rem": "0.8.1",
"postcss-preset-env": "9.3.0",
"prettier": "3.2.4",
"sass": "1.70.0",
"terser": "5.27.0",
"typescript": "5.3.3",
"unplugin-auto-import": "0.17.3",
"unplugin-vue-components": "0.26.0",
"uuid": "9.0.1",
"vite": "5.0.11",
"vue": "3.4.14",
"vue-draggable-plus": "^0.3.4",
"vue-router": "4.2.5",
"vue-tsc": "1.8.27"
},
"devDependencies": {
"@arco-design/web-vue": "2.54.2",
"@nirtamir2/prettier-plugin-css-order": "0.0.1",
"@types/file-saver": "2.0.7",
"@types/howler": "^2.2.11",
"@types/lodash-es": "4.17.12",
"@types/node": "20.11.5",
"@types/uuid": "9.0.7",
"autoprefixer": "10.4.17",
"eslint": "8.56.0",
"eslint-plugin-vue": "9.20.1",
"eslint-plugin-yaml": "0.5.0",
"lint-staged": "15.2.0",
"pinia-plugin-persistedstate": "3.2.1",
"postcss": "8.4.33",
"tailwindcss": "3.4.1"
}
}