-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.21 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
{
"name": "tag-store",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --open",
"build": "vue-tsc -b && vite build && node fix-encoding.js",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --ignore-path .gitignore",
"lint:fix": "eslint . --ext .vue,.js,.ts,.jsx,.tsx --fix --ignore-path .gitignore",
"format": "prettier --write \"src/**/*.{ts,vue}\" \"*.{js,cjs,json}\""
},
"dependencies": {
"@types/markdown-it": "^14.1.2",
"dexie": "^4.0.11",
"markdown-it": "^14.1.0",
"naive-ui": "^2.41.0",
"pinia": "^3.0.2",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vuedraggable": "^4.1.0",
"vuedraggable-es": "^4.1.1"
},
"devDependencies": {
"@types/node": "^22.14.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"@vicons/ionicons5": "^0.13.0",
"@vitejs/plugin-vue": "^5.2.2",
"@vue/tsconfig": "^0.7.0",
"eslint": "^9.25.0",
"eslint-plugin-vue": "^10.0.0",
"prettier": "^3.5.3",
"sass": "^1.86.3",
"typescript": "~5.7.2",
"uuid": "^11.1.0",
"vite": "^6.3.1",
"vue-tsc": "^2.2.8"
}
}