-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
62 lines (62 loc) · 1.9 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
{
"name": "quanthub",
"version": "2.1.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.1.0",
"@vitejs/plugin-vue": "^5.2.1",
"buffer": "^6.0.3",
"csv-parse": "^5.6.0",
"globals": "^15.9.0",
"jsdom": "^25.0.1",
"lodash-es": "^4.17.21",
"mathjs": "^14.0.0",
"postcss": "^8.4.49",
"tailwindcss": "3.4.15",
"vite": "^5.4.11",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@vitest/coverage-v8": "^2.1.8",
"@vue/test-utils": "^2.4.6",
"autoprefixer": "^10.4.20",
"cypress": "^13.16.0",
"cypress-file-upload": "^5.0.8",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^4.1.0",
"eslint-plugin-vue": "^9.31.0",
"esm": "^3.2.25",
"flush-promises": "^1.0.2",
"lint-staged": "^15.2.10",
"node-stdlib-browser": "^1.3.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"prettier": "^3.4.2",
"sass": "^1.81.0",
"vitest": "^2.1.5",
"vue-template-compiler": "^2.7.5"
}
}