-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.4 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
{
"name": "pattern-analyzer",
"version": "0.1.0",
"private": true,
"repository": "github:sebald/pattern-analyzer",
"sideEffects": false,
"packageManager": "[email protected]",
"dependencies": {
"@nivo/axes": "0.85.1",
"@nivo/bar": "0.85.1",
"@nivo/core": "0.85.1",
"@nivo/line": "0.85.1",
"@nivo/pie": "0.85.1",
"@nivo/scatterplot": "^0.85.0",
"@nivo/swarmplot": "^0.85.0",
"@radix-ui/react-accordion": "1.1.2",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-switch": "1.0.3",
"@radix-ui/react-toggle-group": "1.0.4",
"cheerio": "1.0.0-rc.12",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"cmdk": "1.0.0",
"dayjs": "1.11.13",
"kysely": "0.27.4",
"mysql2": "3.9.2",
"next": "14.2.4",
"nextjs-google-analytics": "2.3.3",
"p-limit": "4.0.0",
"query-string": "^9.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"react-use": "17.5.0",
"react-use-clipboard": "1.0.9",
"swr": "2.2.5",
"tailwind-merge": "2.2.1",
"tailwindcss-animate": "1.0.7",
"use-debounce": "10.0.0",
"zod": "3.22.4"
},
"devDependencies": {
"@tailwindcss/forms": "0.5.7",
"@tailwindcss/typography": "0.5.15",
"@testing-library/jest-dom": "6.4.2",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.12",
"@types/node": "20.11.24",
"@types/react": "18.2.70",
"@types/react-dom": "18.2.22",
"@types/react-is": "18.2.4",
"autoprefixer": "10.4.20",
"dotenv": "16.3.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.4",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"postcss": "8.4.38",
"prettier": "3.1.1",
"prettier-plugin-tailwindcss": "0.5.11",
"tailwindcss": "3.4.1",
"tsx": "4.7.1",
"turbo": "1.10.16",
"typescript": "5.4.3",
"xwing-data2": "https://github.com/xwingtmg/xwing-data2#ed1befc",
"yasb": "github:raithos/xwing#a6753af",
"zx": "7.2.3"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier . --write",
"typecheck": "tsc --noEmit",
"test": "jest",
"clean": "rm -rf .next",
"db:setup": "tsx ./scripts/setup-database.ts",
"db:sync": "tsx ./scripts/sync-database.ts",
"update:xwing": "zx scripts/update-xwing-data.mjs",
"update:yasb": "zx scripts/update-yasb-data.mjs"
}
}