-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.35 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.35 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "tonal-scale",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"watch": "vite",
"build": "vite build",
"preview": "vite preview",
"type-check": "vue-tsc --noEmit",
"lint": "npm run lint:eslint && npm run lint:style",
"lint:fix": "npm run lint:eslint:fix && npm run lint:style:fix",
"lint:eslint": "eslint . --ext .js,.jsx,.ts,.tsx,.vue",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"lint:style": "stylelint \"{src,public}/**/*.{css,scss,vue}\"",
"lint:style:fix": "npm run lint:style -- --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ci": "vitest run --reporter=basic",
"cypress:install": "cypress install",
"cypress:base": "npm run cypress:install --silent && start-server-and-test \"npm run watch -- --host --port 5173\" http-get://localhost:5173 \"$CYPRESS_COMMAND\"",
"cypress:open": "CYPRESS_COMMAND=\"cypress open --config-file cypress.config.ts\" npm run cypress:base",
"cypress:run": "CYPRESS_COMMAND=\"cypress run --config-file cypress.config.ts\" npm run cypress:base",
"format": "prettier . --write",
"format:check": "prettier . --check",
"check": "npm run lint && npm run type-check && npm run test:ci",
"ci": "npm run check && npm run build",
"prepare": "husky install"
},
"dependencies": {
"@floating-ui/vue": "^1.1.9",
"@fontsource-variable/inter": "^5.0.19",
"@headlessui/vue": "^1.7.23",
"@heroicons/vue": "^2.2.0",
"@jaames/iro": "^5.5.2",
"@types/dom-to-image": "^2.6.7",
"@types/plotly.js": "^3.0.8",
"@vee-validate/yup": "^4.15.1",
"@vueuse/core": "11.3.0",
"lodash": "4.17.21",
"luxon": "3.7.2",
"pinia": "2.3.1",
"plotly.js-dist-min": "^3.3.0",
"vee-validate": "4.15.1",
"vue": "3.5.24",
"vue-i18n": "9.14.5",
"vue-router": "4.6.3",
"vue-sonner": "^2.0.9",
"yup": "1.7.1"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.10",
"@types/lodash": "4.17.20",
"@types/luxon": "3.4.2",
"@types/node": "22.19.1",
"@typescript-eslint/eslint-plugin": "8.47.0",
"@typescript-eslint/parser": "8.47.0",
"@vitejs/plugin-vue": "5.2.4",
"@vitest/coverage-v8": "^2.1.9",
"@vue/test-utils": "2.4.6",
"arg": "5.0.2",
"autoprefixer": "10.4.20",
"cypress": "^15.7.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.1.2",
"eslint-import-resolver-node": "0.3.9",
"eslint-import-resolver-typescript": "3.10.1",
"eslint-plugin-cypress": "3.6.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-vitest": "0.5.4",
"eslint-plugin-vue": "9.33.0",
"husky": "9.1.6",
"jsdom": "25.0.1",
"lint-staged": "15.4.3",
"postcss": "8.4.49",
"postcss-html": "1.8.0",
"prettier": "3.6.2",
"sass": "1.94.2",
"start-server-and-test": "2.0.10",
"stylelint": "16.25.0",
"stylelint-config-prettier-scss": "1.0.0",
"stylelint-config-recommended-vue": "1.6.1",
"stylelint-config-standard-scss": "14.0.0",
"tailwindcss": "3.4.16",
"typescript": "5.9.3",
"vite": "^6.0.0",
"vite-plugin-pwa": "1.1.0",
"vitest": "^2.1.8",
"vue-tsc": "2.2.12"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue,css,scss,json,yml,yaml,md}": "prettier --write"
}
}