-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.9 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
{
"name": "frontwing",
"description": "Slick Telemetry frontend written in typescript with nextjs and vercel",
"author": "Slick Telemetry",
"license": "GPL-3.0-only",
"version": "0.3.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"cypress:open": "cypress open",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "next lint",
"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",
"@radix-ui/react-avatar": "latest",
"@radix-ui/react-dropdown-menu": "latest",
"@radix-ui/react-navigation-menu": "latest",
"@radix-ui/react-select": "latest",
"@radix-ui/react-slot": "latest",
"class-variance-authority": "latest",
"clsx": "latest",
"country-flag-icons": "latest",
"graphql": "latest",
"i18n-iso-countries": "latest",
"lucide-react": "latest",
"mapbox-gl": "latest",
"moment": "latest",
"next": "latest",
"react": "latest",
"react-dom": "latest",
"react-map-gl": "latest",
"tailwind-merge": "latest",
"tailwindcss-animate": "latest"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@eslint/eslintrc": "latest",
"@eslint/js": "^9.18.0",
"@graphql-codegen/cli": "latest",
"@graphql-codegen/client-preset": "latest",
"@graphql-codegen/introspection": "latest",
"@graphql-codegen/typescript": "latest",
"@graphql-codegen/typescript-operations": "latest",
"@graphql-codegen/typescript-react-apollo": "latest",
"@parcel/watcher": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"autoprefixer": "latest",
"cypress": "^14.0.0",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-cypress": "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": "20.x",
"pnpm": "9.x"
}
}