-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.94 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
{
"name": "emojis-table",
"private": true,
"version": "3.3.0",
"type": "module",
"scripts": {
"dev:chromium": "BROWSER=chromium node scripts/buildManifest.mjs && vite",
"predev": "mkdir -p ./dist && npm run inject:polyfill && npm run _build:emojis",
"_build": "tsc && vite build && npm run inject:polyfill",
"_build:emojis": "node scripts/buildEmojiData.mjs",
"build:chromium": "npm run _build:emojis && BROWSER=chromium node scripts/buildManifest.mjs && npm run _build",
"build:firefox": "npm run _build:emojis && BROWSER=firefox node scripts/buildManifest.mjs && npm run _build",
"preview": "vite preview",
"inject:polyfill": "cp ./node_modules/webextension-polyfill/dist/browser-polyfill.min.js ./dist/",
"lint": "eslint src/ --ext .tsx,.ts --fix",
"test": "jest --config meta/testing/jest.config.cjs"
},
"dependencies": {
"emojilib": "^3.0.11",
"log-update": "^6.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"unicode-emoji-json": "^0.4.0",
"vite-plugin-svgr": "^4.1.0",
"webextension-polyfill": "^0.10.0"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@crxjs/vite-plugin": "^2.0.0-beta.15",
"@testing-library/react": "^14.0.0",
"@types/chrome": "^0.0.250",
"@types/jest": "^29.5.8",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"@vitejs/plugin-react": "^4.1.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.0.3",
"sass": "^1.69.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vite": "^4.5.0"
}
}