-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
76 lines (76 loc) · 2.27 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
{
"name": "github-emoji-picker",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"all": "npm run build && npm run format && npm run lint && npm run test:ci",
"build": "react-scripts build",
"eject": "react-scripts eject",
"format": "prettier --write \"**/*.ts\"",
"format:check": "prettier --check \"**/*.ts\"",
"lint": "eslint \"**/*.ts\"",
"start": "react-scripts start",
"test": "react-scripts test --transformIgnorePatterns \"/node_modules/(?!react-github-btn/)\"",
"test:ci": "react-scripts test --watchAll=false --transformIgnorePatterns \"/node_modules/(?!react-github-btn/)\"",
"update-emojis": "node scripts/create_github_emoji_list.js",
"update-locales": "node scripts/update_locales.js"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"dependencies": {
"@emoji-mart/data": "^1.1.0",
"@emoji-mart/react": "^1.1.0",
"@emotion/react": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.0",
"@mui/material": "^5.15.0",
"@octokit/core": "^6.1.2",
"all-iso-language-codes": "^1.0.11",
"emoji-datasource": "^15.1.0",
"emoji-mart": "^5.5.1",
"emojilib": "^3.0.7",
"i18next": "^23.11.5",
"i18next-browser-languagedetector": "^7.2.0",
"i18next-http-backend": "^2.5.0",
"inflection": "^3.0.0",
"octokit": "^4.0.2",
"react-dom": "^18.2.0",
"react-github-btn": "^1.3.0",
"react-i18next": "^14.1.0",
"unicode-emoji-json": "^0.6.0",
"web-vitals": "^3.5.0"
},
"devDependencies": {
"@babel/runtime": "^7.24.1",
"@testing-library/dom": "9.3.0",
"@testing-library/jest-dom": "^6.4.1",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.1",
"@types/emoji-mart": "^3.0.9",
"@types/jest": "^29.5.0",
"@types/node": "^20.12.13",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"prettier": "^3.2.0",
"react-scripts": "5.0.1",
"sort-package-json": "^2.10.0",
"typescript": "^4.9.3"
}
}