-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.27 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
{
"name": "iliad",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && cd ./src/plugins/DragAndDrop && npm i && npm run build && cd ../../..",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint --ignore-path .eslintignore --ext .js,.ts,.vue .",
"lint:fix": "pnpm lint --fix",
"format": "prettier --cache --log-level warn --ignore-path .gitignore -c \"src/**/*.+(js|ts|json|vue)\"",
"format:fix": "prettier --cache --log-level warn --ignore-path .gitignore -w \"src/**/*.+(js|ts|json|vue)\"",
"test": "vitest -c vitest.config.mts",
"test:coverage": "vitest -c vitest.config.mts --coverage",
"prepare": "husky"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.5.1",
"@fortawesome/free-regular-svg-icons": "^6.5.1",
"@fortawesome/vue-fontawesome": "^3.0.6",
"@tauri-apps/api": "^1.5.2",
"ace-builds": "^1.32.9",
"highlight.js": "^11.9.0",
"lodash": "^4.17.21",
"pinia": "^2.1.7",
"showdown": "^2.1.0",
"tauri-plugin-context-menu": "^0.7.0",
"tauri-plugin-fs-watch-api": "github:tauri-apps/tauri-plugin-fs-watch#v1",
"uuid": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-uri": "^3.0.8",
"vue": "^3.3.4",
"vue3-ace-editor": "^2.2.4",
"vue3-smooth-dnd": "^0.0.6",
"zod": "^3.22.4"
},
"devDependencies": {
"@tauri-apps/cli": "^1.5.8",
"@types/lodash": "^4.14.202",
"@types/showdown": "^2.0.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-istanbul": "^1.4.0",
"autoprefixer": "^10.4.18",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-vue": "^9.20.1",
"husky": "^9.0.11",
"jsdom": "^24.0.0",
"postcss": "^8.4.35",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"sass": "^1.70.0",
"sass-loader": "^14.1.0",
"tailwindcss": "^3.4.1",
"tslib": "^2.6.2",
"typescript": "^5.0.2",
"vite": "^5.0.0",
"vitest": "^1.4.0",
"vue-tsc": "^1.8.5"
}
}