-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.75 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.75 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
{
"name": "enigma",
"private": false,
"version": "1.0.1",
"type": "module",
"scripts": {
"dev": "npm run generate:community-packs && vite",
"build": "npm run generate:community-packs && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:ui:coverage": "vitest --ui --coverage",
"test:backend-standalone": "node backend/test-scripts/test-plugin-isolation.js",
"test:backend-integration": "vitest run tests/integration/backend-plugins.test.js",
"generate:community-packs": "node scripts/generate-community-packs.js"
},
"dependencies": {
"american-british-english-translator": "^0.2.1",
"i18next": "^25.8.14",
"i18next-browser-languagedetector": "^8.2.1",
"killer-sudoku-generator": "^1.1.2",
"konva": "^10.2.1",
"react": "^19.2.0",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.8",
"react-konva": "^19.2.3",
"react-router-dom": "^7.13.1",
"subtlex-word-frequencies": "^2.0.0",
"wordnet": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/coverage-v8": "^4.1.0",
"@vitest/ui": "^4.0.16",
"better-sqlite3": "^12.6.2",
"better-sqlite3-session-store": "^0.1.0",
"cors": "^2.8.6",
"esbuild": "^0.27.4",
"eslint": "^9.39.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"express": "^5.2.1",
"express-session": "^1.19.0",
"globals": "^17.4.0",
"tar": "^7.5.11",
"vite": "^7.3.1",
"vitest": "^4.0.16"
}
}