-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.85 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
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
109
110
111
112
113
114
115
116
117
118
{
"name": "@atb-as/planner-web",
"version": "2.36.0",
"private": true,
"license": "EUPL-1.2",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"test": "vitest",
"test:e2e-local": "E2E_URL=https://localhost:3000 yarn playwright test",
"dev": "next dev",
"build": "next build",
"build:widget": "yarn vite build ./src/widget --emptyOutDir",
"build:all": "sh ./scripts/build.sh",
"build:docker": "sh ./scripts/build-docker.sh",
"start": "next start",
"lint": "next lint",
"clean-assets": "rimraf ./public/assets/",
"presetup": "rimraf ./next/",
"setup": "generate-assets all $NEXT_PUBLIC_PLANNER_ORG_ID -o ./public/assets/ -ts -ts-o ./src/components/icon",
"postsetup": "copyfiles -f \"public/assets/colors/favicon.ico\" \"public/\"",
"generate": "graphql-codegen",
"prestart": "yarn generate",
"predev": "yarn generate",
"generate-widget-version": "sh ./scripts/build-widget.sh",
"postinstall": "patch-package",
"postbuild": "next-sitemap --config next-sitemap.js"
},
"dependencies": {
"@apollo/client": "^3.11.2",
"@atb-as/config-specs": "^3.27.0",
"@atb-as/theme": "^12.0.5",
"@github/combobox-nav": "^3.0.1",
"@internationalized/date": "^3.5.5",
"@isaacs/ttlcache": "^1.4.1",
"@leile/lobo-t": "^1.0.5",
"@mapbox/polyline": "^1.2.1",
"@react-aria/focus": "^3.18.1",
"@react-hook/resize-observer": "^2.0.2",
"@resvg/resvg-js": "^2.6.2",
"@turf/centroid": "^7.0.0",
"@xstate/react": "^4.1.1",
"bunyan": "^1.8.15",
"compare-versions": "^6.1.1",
"cookies-next": "^4.2.1",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"detect-nearest-browser-locale": "^19.0.0",
"detect-nearest-locale": "^1.0.1",
"downshift": "^9.0.7",
"firebase": "^10.12.4",
"framer-motion": "^11.3.19",
"graphql": "^16.9.0",
"haversine-distance": "^1.2.3",
"humanize-duration": "^3.32.1",
"iso8601-duration": "^2.1.2",
"lodash": "^4.17.21",
"lz-string": "^1.5.0",
"mapbox-gl": "^3.5.2",
"next": "14.2.5",
"next-sitemap": "^4.2.3",
"react": "18.3.1",
"react-aria-components": "^1.3.1",
"react-dom": "18.3.1",
"react-syntax-highlighter": "^15.5.0",
"satori": "^0.10.13",
"swr": "^2.2.5",
"uuid": "^10.0.0",
"xstate": "^5.17.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@atb-as/generate-assets": "^13.7.0",
"@atb-as/token": "^0.0.3",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-generic-sdk": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.2.3",
"@playwright/test": "^1.45.3",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/bunyan": "^1.8.11",
"@types/cors": "^2.8.17",
"@types/humanize-duration": "^3.27.4",
"@types/lodash": "^4.17.7",
"@types/mapbox-gl": "^3.4.0",
"@types/mapbox__polyline": "^1.0.5",
"@types/node": "22.0.2",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react-swc": "^3.7.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.5",
"graphql-tag": "^2.12.6",
"happy-dom": "^14.12.3",
"next-router-mock": "^0.9.13",
"patch-package": "^8.0.0",
"postcss": "^8.4.49",
"postcss-cli": "^11.0.0",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^10.1.1",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "5.5.4",
"vite": "^5.3.5",
"vite-plugin-dts": "^4.0.0-beta.2",
"vitest": "^2.0.5"
}
}