-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
54 lines (54 loc) · 1.42 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
{
"name": "webapp",
"private": true,
"type": "module",
"scripts": {
"start": "vite",
"build": "vue-tsc --build && vite build",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint .",
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "vitest --run",
"test:e2e": "VITE_SERVER_URL=http://server start-server-and-test start http://localhost:8081 'cypress run --e2e'"
},
"dependencies": {
"@epfml/discojs": "*",
"@epfml/discojs-web": "*",
"@msgpack/msgpack": "<3.0.0-beta5",
"apexcharts": "4",
"cypress": "13",
"d3": "7",
"driver.js": "1",
"pinia": "<2.2.3",
"pinia-plugin-persistedstate-2": "2",
"vee-validate": "4",
"vue": "3",
"vue-router": "4",
"vue-tippy": "6",
"vue-toast-notification": "3",
"vue3-apexcharts": "1",
"yup": "1"
},
"devDependencies": {
"@pinia/testing": "<0.1.6",
"@tsconfig/node20": "20",
"@types/d3": "7",
"@types/jsdom": "21",
"@vitejs/plugin-vue": "5",
"@vue/eslint-config-prettier": "9",
"@vue/eslint-config-typescript": "13",
"@vue/test-utils": "2",
"@vue/tsconfig": "0.5",
"autoprefixer": "10",
"eslint-plugin-cypress": "3",
"jsdom": "26",
"postcss": "8",
"start-server-and-test": "2",
"tailwindcss": "3",
"typescript": "5",
"vite": "5",
"vite-plugin-node-polyfills": "0.22",
"vitest": "2",
"vue-tsc": "2",
"vue3-spinners": "1"
}
}