-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
62 lines (62 loc) · 1.73 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
{
"name": "notes.web",
"version": "0.0.1",
"author": "CodeX <[email protected]> (https://codex.so)",
"type": "module",
"scripts": {
"dev": "vite",
"build": "yarn build:ui && vue-tsc && vite build",
"build:ui": "yarn workspace codex-ui run build",
"preview": "vite preview",
"lint": "eslint",
"lint:fix": "yarn lint --fix",
"watch-ts": "vue-tsc --noEmit --watch",
"format": "prettier --write --cache ."
},
"private": true,
"workspaces": [
"codex-ui"
],
"dependencies": {
"@codexteam/icons": "^0.3.3",
"@hawk.so/javascript": "^3.0.2",
"@vueuse/core": "^10.3.0",
"codex-ui": "workspace:^",
"dayjs": "^1.11.10",
"html2canvas": "^1.4.1",
"jwt-decode": "^3.1.2",
"nanoid": "^5.0.7",
"normalize.css": "^8.0.1",
"typescript-cookie": "^1.0.6",
"unhead": "^1.8.3",
"vue": "^3.3.4",
"vue-i18n": "^9.2.2",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.3.0",
"@hawk.so/vite-plugin": "^1.0.2",
"@types/node": "^20.10.7",
"@vitejs/plugin-vue": "^4.1.0",
"eslint": "^9.3.0",
"eslint-config-codex": "^2.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-boundaries": "^3.1.1",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-vue": "^9.15.1",
"postcss": "^8.4.26",
"postcss-apply": "^0.12.0",
"postcss-hover-media-feature": "^1.0.2",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^9.0.0",
"prettier": "3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0",
"vite": "^4.4.9",
"vue-eslint-parser": "9.4.2",
"vue-tsc": "^1.8.8"
},
"packageManager": "[email protected]"
}