-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
97 lines (97 loc) · 3.15 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
95
96
97
{
"name": "@resir014/stream-overlays",
"version": "1.0.0",
"description": "Experimenting on using React for OBS stream overlays.",
"main": "N/A",
"repository": "https://github.com/resir014/stream-overlays.git",
"author": "Resi Respati <[email protected]>",
"license": "MIT",
"private": true,
"engines": {
"node": "18.x || 20.x"
},
"scripts": {
"build": "next build",
"dev": "next",
"export": "next export",
"format": "prettier --write \"./src/**/*.{ts,tsx}\" \"./*.{js,ts,tsx}\"",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"**/*.{js,jsx,ts,tsx}\"",
"start": "next start",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand --watch",
"type-check": "tsc --noEmit",
"validate": "npm run type-check && npm run lint"
},
"dependencies": {
"@capsizecss/core": "^3.1.1",
"@capsizecss/metrics": "^1.3.0",
"@fontsource/jetbrains-mono": "^5.0.20",
"@headlessui/react": "^1.7.19",
"@notionhq/client": "^2.2.15",
"@resir014/lerp": "^0.1.1",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"clsx": "^2.1.1",
"date-fns": "^2.30.0",
"dequal": "^2.0.3",
"eslint-config-gsap": "^3.0.0",
"nanoid": "^5.0.7",
"next": "^14.2.3",
"normalize.css": "^8.0.1",
"query-string": "^9.0.0",
"react": "^18.3.1",
"react-countdown": "^2.3.5",
"react-dom": "^18.3.1",
"react-feather": "^2.0.10",
"socket.io-client": "^2.4.0",
"text-case": "^1.0.9",
"typeface-inter": "^3.18.1",
"webfontloader": "^1.6.28",
"zod": "^3.23.6",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/eslint-plugin": "^7.24.5",
"@babel/preset-react": "^7.24.1",
"@resir014/tailwind-preset-chungking": "0.1.4-canary.7",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.12.8",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/socket.io-client": "^1.4.36",
"@types/webfontloader": "^1.6.38",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"autoprefixer": "^10.4.19",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-kentcdodds": "^21.0.0",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"is-ci-cli": "^2.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"prettier": "^3.2.5",
"react-intersection-observer": "^9.10.2",
"react-is": "^18.3.1",
"stylelint": "^15.11.0",
"stylelint-config-recommended": "^12.0.0",
"tailwindcss": "^3.4.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}