-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.12 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
{
"name": "perl5-coresmokedb-web",
"version": "0.0.1",
"scripts": {
"build:preview": "vite build --mode staging",
"build:main": "vite build --mode production",
"build:docker": "vite build --mode docker",
"build": "vite build",
"test": "vitest run",
"test:follow": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix-dry-run src",
"dev": "vite --host",
"preview": "vite preview --port 4173 --host"
},
"dependencies": {
"axios": "^1.6.8",
"vue": "^3.2.38",
"vue-router": "^4.0.13",
"vue-select": "^4.0.0-beta.6",
"vuex": "^4.0.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@testing-library/vue": "^6.6.1",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/cli-plugin-unit-jest": "~5.0.0",
"@vue/test-utils": "^2.0.0-0",
"@vue/vue3-jest": "^27.0.0-alpha.1",
"babel-jest": "^27.0.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^9.4.0",
"happy-dom": "^6.0.4",
"jest": "^27.0.5",
"prettier": "2.7.1",
"vite": "^3.0.9",
"vitest": "^0.23.4"
}
}