forked from Police-Data-Accessibility-Project/pdap.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.97 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.97 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"setup": "node tools/setup-envs.js",
"dev": "npm run dev:dev",
"dev:dev": "cross-env NODE_ENV=development vite --mode development",
"dev:prod": "cross-env NODE_ENV=production vite --mode production",
"build": "cross-env NODE_ENV=production vite build --mode production",
"build:dev": "cross-env NODE_ENV=development vite build --mode development",
"serve": "cross-env vite preview --port 8888",
"lint": "eslint src --ext .vue .",
"lint:fix": "npm run lint -- --fix",
"test:unit": "vitest --dom --run",
"test:unit:ci": "npm run test:unit -- --silent",
"test:unit:changed": "npm run test:unit -- --dom --changed",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:install": "playwright install --with-deps",
"coverage": "npm run test -- --coverage",
"update-dev-deps": "npx playwright install && npx update-browserslist-db@latest"
},
"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",
"@tanstack/vue-query": "^5.66.4",
"@vueuse/core": "^11.2.0",
"axios": "^1.6.0",
"d3": "^7.9.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"dotenv": "^16.4.7",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"pdap-design-system": "^3.2.4",
"pinia": "^2.1.7",
"pinia-plugin-persistedstate": "^3.2.1",
"topojson-client": "^3.1.0",
"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",
"@playwright/test": "^1.51.1",
"@vitejs/plugin-vue": "^6.0.0",
"@vitest/coverage-v8": "^3.2.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.16",
"cross-env": "^10.1.0",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.20.1",
"happy-dom": "^18.0.1",
"jest-serializer-vue-tjw": "^3.20.0",
"jsonwebtoken": "^9.0.2",
"msw": "^2.7.3",
"node-fetch": "^2.7.0",
"playwright-msw": "^3.0.1",
"postcss": "^8.4.32",
"prettier": "^3.4.2",
"prettier-eslint": "^16.3.0",
"tailwindcss": "^3.3.6",
"terser": "^5.37.0",
"topojson-client": "^3.1.0",
"topojson-server": "^3.0.1",
"topojson-simplify": "^3.0.3",
"unplugin-vue-router": "^0.10.2",
"vite": "^6.3.5",
"vite-svg-loader": "^5.1.0",
"vitest": "^3.2.4",
"vue-eslint-parser": "^9.0.0"
},
"engines": {
"node": "20.19.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.0.0",
"win-node-env": "^0.6.1"
}
}