-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.42 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.42 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
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
78
79
80
{
"name": "user-functions",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "run-p build:js build:storybook \"build:types {@}\" --",
"build:js": "vite build",
"build:storybook": "storybook build",
"build:types": "vue-tsc --build --force",
"check": "run-p build:js format:check",
"preview": "vite preview",
"format": "prettier --cache --write .",
"format:check": "prettier --cache --check .",
"lint": "eslint --cache .",
"lint:fix": "eslint --cache --fix .",
"storybook": "storybook dev -p 6006"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.2.2",
"@codemirror/theme-one-dark": "^6.1.2",
"@mdi/font": "^7.4.47",
"@types/lodash": "^4.17.17",
"@vueuse/core": "^11.1.0",
"codemirror": "^6.0.1",
"codemirror-readonly-ranges": "^0.1.0-alpha.2",
"ctrl-keys": "^1.0.6",
"gsap": "^3.12.5",
"linear-algebra": "^3.1.4",
"lz-string": "^1.5.0",
"mathjs": "^14.0.1",
"primevue": "^4.2.4",
"socket.io-client": "^4.8.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-primeui": "^0.3.4",
"tinycolor2": "^1.6.0",
"vue": "^3.5.17",
"vue-codemirror": "^6.1.1",
"vue-router": "^4.0.13"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.0",
"@eslint/js": "^9.31.0",
"@storybook/addon-a11y": "^9.0.1",
"@storybook/addon-docs": "^9.0.1",
"@storybook/vue3-vite": "^9.0.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.14.5",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/browser": "^2.1.9",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.20",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-storybook": "^9.0.1",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.13.0",
"jsdom": "^25.0.1",
"npm-run-all2": "^6.2.0",
"playwright": "^1.52.0",
"postcss": "^8.4.49",
"postcss-import": "^16.1.0",
"prettier": "^3.4.2",
"storybook": "^9.0.1",
"tailwindcss": "^3.4.16",
"ts-essentials": "^10.0.3",
"typescript": "~5.4.0",
"typescript-eslint": "^8.17.0",
"vite": "^5.3.1",
"vitest": "^2.1.3",
"vue-tsc": "^2.0.21"
}
}