-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.59 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.59 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@wfcd/hub",
"version": "0.0.0-dev",
"private": true,
"type": "module",
"scripts": {
"dev": "vinext dev",
"build": "vinext build && node scripts/patch-pwa-public-files.mjs && node scripts/verify-static-deploy.mjs",
"start": "vinext start --port 8742",
"vinext:check": "vinext check",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"commitlint": "commitlint",
"prepare": "husky",
"test": "npm run test:property && npm run test:e2e && npm run test:component",
"test:property": "node --import jiti/register --test 'lib/**/*.property.test.ts' 'components/**/*.property.test.ts'",
"test:e2e": "cypress run --e2e --config-file cypress.config.ts",
"test:component": "cypress run --component --config-file cypress.config.ts",
"test:debug": "cypress open --config-file cypress.config.ts",
"test:debug:component": "cypress open --component --config-file cypress.config.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@fortawesome/fontawesome-free": "5.8.2",
"@heroui/react": "^3.2.5",
"@heroui/styles": "^3.2.2",
"@sentry/react": "^10.74.0",
"dayjs": "^1.11.23",
"i18next": "^26.4.2",
"json5": "^2.2.3",
"leaflet": "^1.9.4",
"react": "^19.3.0",
"react-dom": "^19.3.0",
"react-i18next": "^17.0.13",
"react-leaflet": "^5.0.0",
"react-masonry-css": "^1.0.16",
"vinext": "1.0.0-beta.9"
},
"devDependencies": {
"@codedependant/semantic-release-docker": "^8.0.0",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.0",
"@commitlint/types": "^21.2.0",
"@eclass/semantic-release-sentry-releases": "^3.1.0",
"@eslint/compat": "^2.1.1",
"@eslint/js": "^10.0.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/github": "^12.0.9",
"@semantic-release/release-notes-generator": "^14.1.1",
"@stylistic/eslint-plugin": "^5.10.0",
"@tailwindcss/vite": "^4.3.3",
"@types/leaflet": "^1.9.22",
"@types/react": "^19.3.0",
"@types/react-dom": "^19.3.0",
"@vite-pwa/assets-generator": "^1.0.0",
"@vitejs/plugin-react": "^6.1.1",
"@vitejs/plugin-rsc": "^0.5.32",
"cypress": "^16.0.0",
"cypress-real-events": "^1.15.1",
"eslint": "^10.7.0",
"eslint-plugin-cypress": "^7.0.2",
"eslint-plugin-i18next": "^6.1.5",
"eslint-plugin-jsonc": "^3.4.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-yml": "^3.8.1",
"fast-check": "^4.10.0",
"globals": "^17.8.0",
"husky": "^9.1.7",
"jiti": "^2.7.0",
"jsonc-eslint-parser": "^3.3.0",
"lint-staged": "^17.5.1",
"nitro": "3.0.260610-beta",
"sass": "^1.104.0",
"semantic-release": "^25.0.9",
"tailwindcss": "^4.3.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.70.0",
"vite": "^8.3.0",
"vite-plugin-pwa": "^1.0.0",
"yaml-eslint-parser": "^2.1.0"
},
"engines": {
"node": "24"
},
"overrides": {
"eslint-plugin-jsx-a11y": {
"eslint": "$eslint"
},
"eslint-plugin-react": {
"eslint": "$eslint"
},
"brace-expansion@1": "1.1.17",
"brace-expansion@2": "2.1.3",
"brace-expansion@5": "5.0.8",
"@semantic-release/npm": "file:.github/noop-semantic-release-npm",
"sharp": "0.35.0",
"@adobe/react-spectrum": "3.47.3",
"react-aria": "3.51.0",
"react-aria-components": "1.20.0"
}
}