-
-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.83 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.83 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "github-emoji-picker",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20.0.0 <25"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint src/",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"format:check": "prettier --check \"**/*.{ts,tsx}\"",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"all": "npm run build && npm run format && npm run lint",
"update-emojis": "node scripts/create_github_emoji_list.js",
"update-locales": "node scripts/update_locales.js"
},
"dependencies": {
"@emoji-mart/data": "^1.1.0",
"@emoji-mart/react": "^1.1.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^5.15.0",
"@mui/material": "^5.15.0",
"@octokit/core": "^7.0.6",
"all-iso-language-codes": "^1.0.11",
"emoji-datasource": "^16.0.0",
"emoji-mart": "^5.6.0",
"emojilib": "^4.0.2",
"i18next": "^25.8.13",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^3.0.2",
"inflection": "^3.0.0",
"next": "^16.2.0",
"octokit": "^5.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-github-btn": "^1.4.0",
"react-i18next": "^16.5.4",
"unicode-emoji-json": "^0.8.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.5.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@vitejs/plugin-react": "^5.1.4",
"eslint": "^9.0.0",
"eslint-config-next": "^16.2.0",
"jsdom": "^29.0.0",
"prettier": "^3.2.0",
"typescript": "^5.7.0",
"vitest": "^4.1.0"
}
}