-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
78 lines (78 loc) · 2.48 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
{
"name": "stream-overlays",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro preview",
"build": "astro check && astro build",
"preview": "astro preview",
"format": "prettier --write \"./src/**/*.{ts,tsx}\" \"./templates/**/*.{cjs,mjs,js,ts,tsx}\" \"./*.{cjs,mjs,js,ts,tsx}\"",
"lint": "eslint \"**/*.{cjs,mjs,js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"**/*.{cjs,mjs,js,jsx,ts,tsx}\"",
"astro": "astro",
"type-check": "astro check",
"validate": "pnpm run type-check && pnpm run lint",
"test": "vitest"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/netlify": "^5.5.4",
"@astrojs/react": "^3.6.2",
"@astrojs/tailwind": "^5.1.4",
"@astrojs/ts-plugin": "^1.10.4",
"@capsizecss/core": "^4.1.2",
"@capsizecss/metrics": "^3.4.0",
"@fontsource-variable/inter": "^5.1.1",
"@fontsource-variable/jetbrains-mono": "^5.1.2",
"@headlessui/react": "^2.2.0",
"@notionhq/client": "^2.2.15",
"@resir014/lerp": "^0.1.1",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"astro": "^4.16.18",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dequal": "^2.0.3",
"nanoid": "^5.0.9",
"query-string": "^9.1.1",
"react": "^18.3.1",
"react-countdown": "^2.3.6",
"react-dom": "^18.3.1",
"react-feather": "^2.0.10",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"use-sync-external-store": "^1.4.0",
"webfontloader": "^1.6.28",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@epic-web/config": "^1.16.5",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@resir014/tailwind-preset-chungking": "0.1.4-canary.7",
"@types/node": "^20.12.8",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/webfontloader": "^1.6.38",
"eslint": "^9.18.0",
"eslint-config-gsap": "^3.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"globals": "^15.14.0",
"is-ci-cli": "^2.2.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"react-intersection-observer": "^9.13.1",
"react-is": "^18.3.1",
"stylelint": "^16.11.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-prettier": "^5.0.3",
"vitest": "^2.1.9"
}
}