-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
67 lines (67 loc) · 1.92 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
63
64
65
66
67
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "NODE_ENV=production vite build",
"serve": "vite preview --port 8888",
"lint": "eslint src --ext .vue .",
"lint:fix": "npm run lint -- --fix",
"test": "vitest --dom --run",
"test:ci": "npm run test -- --silent",
"test:changed": "npm run test -- --dom --changed",
"coverage": "npm run test -- --coverage"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-brands-svg-icons": "^6.6.0",
"@fortawesome/free-regular-svg-icons": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@tailwindcss/container-queries": "^0.1.1",
"@vueuse/core": "^11.2.0",
"axios": "^1.6.0",
"dotenv": "^16.4.7",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"pdap-design-system": "^3.1.0-beta.42",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"vue": "^3.4.19",
"vue-router": "^4.4.3",
"vue3-toastify": "^0.2.5"
},
"devDependencies": {
"@pdap-design-system/eslint-config": "^1.0.1",
"@pinia/testing": "^0.1.3",
"@vitejs/plugin-vue": "^4.2.3",
"@vitest/coverage-v8": "^1.2.1",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.16",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.20.1",
"happy-dom": "^13.1.4",
"jest-serializer-vue-tjw": "^3.20.0",
"postcss": "^8.4.32",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"tailwindcss": "^3.3.6",
"terser": "^5.37.0",
"unplugin-vue-router": "^0.10.2",
"vite": "^4.5.1",
"vite-svg-loader": "^5.1.0",
"vitest": "^1.2.1",
"vue-eslint-parser": "^9.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"optionalDependencies": {
"win-node-env": "^0.6.1"
}
}