-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
93 lines (93 loc) · 3.33 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
{
"name": "diffle-lang",
"keywords": [
"wordle",
"diffle",
"scrabble",
"literaki",
"literalnie",
"slowoku"
],
"private": true,
"version": "3.37.1",
"type": "module",
"scripts": {
"dev": "vite --port 3001",
"dev-test": "vite --port 2001",
"start": "vite --port 3001",
"build": "tsc && vite build && node scripts/post-build.mjs",
"about ? post-build": "Creates pl.html, en.html, etc., with personalized Open Graph for those languages.",
"post-build": "node scripts/post-build.mjs",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"about ? build-[lang]": "Calling build-[lang] only-wordle will find best wordle matches - it's very time consuming action (n^n)",
"build-cs": "tsx scripts/build-cs-dictionary.ts",
"build-de": "tsx scripts/build-de-dictionary.ts",
"build-en": "tsx scripts/build-en-dictionary.ts",
"build-es": "tsx scripts/build-es-dictionary.ts",
"build-fi": "tsx scripts/build-fi-dictionary.ts",
"build-fr": "tsx scripts/build-fr-dictionary.ts",
"build-it": "tsx scripts/build-it-dictionary.ts",
"build-pl": "tsx scripts/build-pl-dictionary.ts",
"build-langs": "yarn build-cs & yarn build-de & yarn build-en & yarn build-es & yarn build-fi & yarn build-fr & yarn build-it & yarn build-pl",
"build-hejto": "tsx scripts/hejto/2024-summary-data.ts",
"preview": "vite preview",
"test": "jest",
"test-e2e": "playwright test",
"build-us": "tsx user-scripts/hejto-parser/build.ts",
"dev-us": "nodemon --watch user-scripts/hejto-parser --exec npm run build-us",
"dev-us-server": "tsx user-scripts/hejto-parser/dev-script.ts"
},
"dependencies": {
"@tanstack/react-query": "^5.18.1",
"downloadjs": "^1.4.7",
"eslint-import-resolver-alias": "^1.1.2",
"fs-extra": "^11.2.0",
"html-to-image": "^1.11.11",
"i18next": "^23.4.6",
"i18next-intervalplural-postprocessor": "^3.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^13.2.0"
},
"devDependencies": {
"@babel/plugin-syntax-jsx": "^7.22.5",
"@babel/plugin-transform-react-jsx": "^7.22.5",
"@playwright/test": "^1.48.0",
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/downloadjs": "^1.4.6",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-redux": "^7.1.25",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitejs/plugin-react": "^4.0.3",
"chalk": "^5.3.0",
"clsx": "^2.0.0",
"eslint": "8.2.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.3.0",
"eslint-plugin-react-refresh": "^0.4.3",
"express": "^4.21.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"nodemon": "^3.1.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.1",
"sass": "^1.64.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsx": "^4.10.0",
"typescript": "^5.0.2",
"vite": "^4.5.3"
}
}