-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "flicker",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "npm run emoji:generate && tsc -b && vite build",
"dev": "npm run emoji:generate && vite",
"emoji:generate": "node scripts/generateEmojiMap.mjs",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "husky",
"preview": "vite preview"
},
"dependencies": {
"@twemoji/api": "^17.0.2",
"html-react-parser": "^5.2.17",
"overlayscrollbars": "^2.14.0",
"overlayscrollbars-react": "^0.5.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-router-dom": "^7.13.1",
"shiki": "^4.0.0",
"zod": "^4.3.6",
"zustand": "^5.0.11"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@commitlint/cli": "^20.4.2",
"@commitlint/config-conventional": "^20.4.2",
"@types/node": "^25.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@unicode/unicode-17.0.0": "^1.6.16",
"@vitejs/plugin-react": "^5.1.4",
"emojibase-data": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"vite": "npm:rolldown-vite@latest"
},
"overrides": {
"vite": "npm:rolldown-vite@latest"
}
}