forked from globalbuildingdatainitiative/web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.83 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.83 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
{
"name": "gbdi-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --port 8000 --host",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --run",
"codegen": "graphql-codegen --config codegen.yaml",
"format:fix": "prettier --write src/",
"format": "prettier --check src/",
"lint": "eslint src --ext ts,tsx ",
"lint:fix": "eslint --fix src/**/*.{tsx,ts}",
"tsc": "tsc --noEmit",
"check": "npm run format && npm run lint && npm run tsc",
"fix": "npm run format:fix && npm run lint:fix"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@fontsource/plus-jakarta-sans": "^5.1.1",
"@mantine/charts": "^7.11.0",
"@mantine/core": "^7.11.0",
"@mantine/dates": "^7.11.0",
"@mantine/dropzone": "^7.11.0",
"@mantine/form": "^7.11.0",
"@mantine/hooks": "^7.11.0",
"@mantine/notifications": "^7.13.2",
"@tabler/icons-react": "^3.27.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.10",
"dom-to-image": "^2.6.0",
"export-to-csv": "^1.4.0",
"lcax": "^2.6.1",
"leaflet": "^1.9.4",
"mantine-react-table": "^2.0.0-beta.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-leaflet": "^4.2.1",
"react-router-dom": "^6.22.3",
"recharts": "2.12.7",
"supertokens-auth-react": "^0.48.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@apollo/client": "^3.10.1",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/introspection": "^4.0.3",
"@graphql-codegen/typescript-operations": "^4.2.0",
"@graphql-codegen/typescript-react-apollo": "^4.3.0",
"@graphql-codegen/typescript-resolvers": "^4.0.6",
"@graphql-tools/mock": "^9.0.2",
"@graphql-tools/schema": "^10.0.3",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^15.0.7",
"@testing-library/user-event": "^14.5.2",
"@types/dom-to-image": "^2.6.7",
"@types/jest": "^29.5.12",
"@types/leaflet": "^1.9.12",
"@types/node": "^20.12.7",
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"happy-dom": "^14.12.3",
"jest": "^29.7.0",
"jsdom": "^24.1.0",
"postcss": "^8.4.36",
"postcss-preset-mantine": "^1.13.0",
"prettier": "^3.2.5",
"typescript": "^5.2.2",
"vite": "^5.1.6",
"vite-plugin-wasm": "^3.3.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0"
}
}