-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.94 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.94 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
{
"name": "quanthub",
"version": "2.2.0",
"private": true,
"type": "module",
"scripts": {
"start:host": "npm-run-all -p serve:css serve:host",
"start": "npm-run-all -p serve:css serve",
"serve": "vite",
"serve:host": "vite --host",
"build": "npm-run-all build:css build:js",
"build:js": "vite build",
"test:unit": "vitest run",
"test:e2e": "npm-run-all -p start test:cypress:all",
"test:cypress:all": "cypress run",
"test:e2e:one": "npm-run-all -p start test:cypress:one",
"test:cypress:one": "cypress open",
"test": "npm-run-all test:unit test:e2e",
"lint": "eslint .",
"prettier-check": "prettier --check .",
"prettify": "prettier --write .",
"serve:css": "postcss src/styles/tailwind.css -o src/styles/index.css",
"build:css": "postcss src/styles/tailwind.css -o src/styles/index.css --env production"
},
"dependencies": {
"@sanger/ui-styling": "^4.3.0",
"@tailwindcss/postcss": "^4.2.1",
"@vitejs/plugin-vue": "^6.0.4",
"buffer": "^6.0.3",
"csv-parse": "^6.1.0",
"globals": "^17.4.0",
"jsdom": "^27.4.0",
"lodash-es": "^4.17.23",
"mathjs": "^15.1.1",
"postcss": "^8.5.8",
"tailwindcss": "^4.1.16",
"vite": "^7.3.1",
"vue": "^3.5.29",
"vue-router": "^4.6.3"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@vitest/coverage-v8": "^4.0.18",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.27",
"cypress": "^15.11.0",
"cypress-file-upload": "^5.0.8",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-cypress": "^5.3.0",
"eslint-plugin-vue": "^10.8.0",
"esm": "^3.2.25",
"flush-promises": "^1.0.2",
"lint-staged": "^16.3.2",
"node-stdlib-browser": "^1.3.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^11.0.1",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"vitest": "^4.0.18",
"vue-template-compiler": "^2.7.5"
}
}