-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
56 lines (56 loc) · 1.68 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
{
"name": "ai-sidebar",
"version": "1.9.0",
"private": true,
"scripts": {
"dev": "vite -m dev",
"build": "vue-tsc --noEmit && vite build",
"build-watch": "vue-tsc --noEmit && vite build --watch",
"zip": "npm run build && bestzip dist.zip dist/",
"pull-request-check": "npm run prettier && npm run lint && npm run test && npm run build",
"test": "vitest --run",
"preview": "vite preview",
"lint": "eslint . --fix --ignore-path .gitignore",
"prettier": "prettier --write --cache .",
"cypress": "vite -m cypress & cypress run --headed && killall -9 node",
"cypress-gui": "vite -m cypress & npx cypress open"
},
"dependencies": {
"@mdi/font": "7.0.96",
"aos": "^3.0.0-beta.6",
"core-js": "^3.29.0",
"lodash": "^4.17.21",
"markdown-it": "^13.0.1",
"markdown-it-highlightjs": "^4.0.1",
"openai": "^4.8.0",
"pinia": "^2.0.0",
"uuid": "^9.0.1",
"vue": "^3.2.0",
"vue-router": "^4.0.0",
"vue3-markdown-it": "^1.0.10",
"vuetify": "^3.0.0"
},
"devDependencies": {
"@babel/types": "^7.21.4",
"@types/aos": "^3.0.6",
"@types/chrome": "^0.0.246",
"@types/lodash": "^4.14.199",
"@types/markdown-it": "^13.0.1",
"@types/node": "^18.15.0",
"@types/uuid": "^9.0.4",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"bestzip": "^2.2.1",
"cypress": "^13.4.0",
"eslint": "^8.37.0",
"eslint-plugin-vue": "^9.3.0",
"prettier": "3.0.3",
"sass": "^1.60.0",
"typescript": "^5.0.0 || < 5.2.0",
"unplugin-fonts": "^1.0.3",
"vite": "^4.2.0",
"vite-plugin-vuetify": "^1.0.0",
"vitest": "^0.34.6",
"vue-tsc": "^1.2.0"
}
}