-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.94 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
{
"name": "cloud-snitch",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "bash -c 'if [ ! -z \"$ENV\" ]; then export $(cat \"$ENV\" | xargs); fi; next dev --turbopack'",
"build": "next build",
"check": "tsc --noEmit",
"start": "next start",
"lint": "next lint",
"generate": "rm -rf src/generated/api/ && openapi-generator-cli generate -i ../backend/api/apispec/openapi.yaml -o src/generated/api -g typescript-fetch"
},
"dependencies": {
"@github/webauthn-json": "^2.1.1",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.2.0",
"@react-three/fiber": "^9.1.0",
"@rematch/core": "^2.2.0",
"@rematch/loading": "^2.1.2",
"@stripe/react-stripe-js": "^3.5.1",
"@stripe/stripe-js": "^6.1.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/three": "^0.174.0",
"clsx": "^2.1.1",
"immer": "^10.1.1",
"ip-cidr": "^4.0.2",
"maath": "^0.10.8",
"maplibre-gl": "^5.2.0",
"meshline": "^3.3.1",
"next": "^15.2.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-map-gl": "^8.0.1",
"react-markdown": "^10.1.0",
"react-redux": "^9.2.0",
"react-syntax-highlighter": "^15.6.1",
"redux": "^5.0.1",
"three": "^0.174.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@openapitools/openapi-generator-cli": "^2.17.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.2.1",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.5.3",
"tailwindcss": "^4",
"typescript": "^5"
}
}