-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.63 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.63 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
{
"name": "frontwing",
"description": "Slick Telemetry frontend written in typescript with nextjs and vercel",
"author": "Slick Telemetry",
"license": "GPL-3.0-only",
"version": "0.12.5",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"cy:open": "cypress open",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"lint:fix": "eslint . --fix && pnpm format",
"lint:strict": "eslint --max-warnings=0",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky",
"start": "next start",
"typecheck": "tsc --pretty --noEmit --incremental false",
"generate": "graphql-codegen --config codegen.ts"
},
"dependencies": {
"@apollo/client": "latest",
"@graphql-typed-document-node/core": "latest",
"@tailwindcss/postcss": "latest",
"@turf/great-circle": "latest",
"class-variance-authority": "latest",
"clsx": "latest",
"echarts": "latest",
"graphql": "latest",
"lucide-react": "latest",
"mapbox-gl": "latest",
"next": "latest",
"next-themes": "latest",
"posthog-js": "latest",
"radix-ui": "latest",
"react": "latest",
"react-dom": "latest",
"react-fast-marquee": "latest",
"react-map-gl": "latest",
"tailwind-merge": "latest",
"tailwindcss-animate": "latest"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@eslint/js": "latest",
"@graphql-codegen/cli": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"autoprefixer": "latest",
"cypress": "latest",
"dotenv": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-cypress": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"eslint-plugin-simple-import-sort": "latest",
"eslint-plugin-unused-imports": "latest",
"globals": "latest",
"husky": "latest",
"lint-staged": "latest",
"next-sitemap": "latest",
"postcss": "latest",
"prettier": "latest",
"prettier-plugin-tailwindcss": "latest",
"tailwindcss": "latest",
"typescript": "latest"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0",
"prettier -w"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
},
"engines": {
"node": "24.14.x",
"pnpm": "10.x"
},
"packageManager": "pnpm@10.33.2"
}