-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
81 lines (81 loc) · 2.54 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "desdeo-webui",
"version": "0.0.1",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check . && eslint .",
"format": "prettier --write .",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@cortex-js/compute-engine": "^0.12.3",
"axios": "^1.4.0",
"echarts": "^5.4.2",
"file-saver": "^2.0.5",
"immer": "^10.0.2",
"mathlive": "^0.95.4",
"ts-pattern": "^5.0.5",
"zod": "^3.21.4"
},
"devDependencies": {
"@iconify-json/heroicons": "^1.1.11",
"@iconify-json/material-symbols": "^1.1.56",
"@playwright/test": "^1.28.1",
"@skeletonlabs/skeleton": "^1.6.1",
"@storybook/addon-essentials": "^7.6.7",
"@storybook/addon-interactions": "^7.6.7",
"@storybook/addon-links": "^7.6.7",
"@storybook/blocks": "^7.6.7",
"@storybook/svelte": "^7.6.7",
"@storybook/sveltekit": "^7.6.7",
"@storybook/test": "^7.6.7",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.20.4",
"@tailwindcss/forms": "^0.5.3",
"@types/echarts": "^4.9.17",
"@types/file-saver": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-storybook": "^0.6.15",
"eslint-plugin-svelte": "^2.30.0",
"eslint-plugin-tailwindcss": "^3.12.0",
"husky": "^8.0.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.23",
"postcss-load-config": "^4.0.1",
"prettier": "^2.8.0",
"prettier-plugin-jsdoc": "^0.4.2",
"prettier-plugin-svelte": "^2.10.1",
"prettier-plugin-tailwindcss": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^7.6.7",
"svelte": "^4.0.0",
"svelte-check": "^3.4.3",
"svelte-preprocess": "^5.0.3",
"tailwindcss": "^3.3.1",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"typescript-svelte-plugin": "^0.3.26",
"unplugin-icons": "^0.16.5",
"vite": "^4.3.0",
"vitest": "^0.34.1"
}
}