forked from tom-james-watson/wikitrivia
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.45 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
{
"name": "disco2very",
"version": "0.7.1",
"private": true,
"engines": {
"node": "^22.19.0 || >=24"
},
"scripts": {
"build": "tsc --noEmit && vite build",
"build:ut": "tsc --noEmit && vite build --mode ubuntu-touch",
"dev": "vite",
"format": "prettier --write '**/*.{ts,tsx,css,scss,json,yml}'",
"lint": "eslint --max-warnings=0 --cache '**/*.{ts,tsx}'",
"lint-fix": "eslint --fix --cache '**/*.{ts,tsx}'",
"preview": "vite preview",
"test-e2e": "playwright test",
"test-unit": "node --test 'tests/unit/*.test.mjs'",
"update-ademe": "node scripts/update-ademe-data.mjs",
"i18n-extract": "lingui extract"
},
"dependencies": {
"@lingui/core": "^6.5.0",
"@lingui/react": "^6.5.0",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^5.13.1",
"@eslint/js": "^10.0.1",
"@lingui/babel-plugin-lingui-macro": "^6.5.0",
"@lingui/cli": "^6.5.0",
"@lingui/format-po": "^6.5.0",
"@lingui/vite-plugin": "^6.5.0",
"@playwright/test": "^1.61.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"eslint": "^10.6.0",
"eslint-plugin-lingui": "^0.14.0",
"eslint-plugin-react-hooks": "^7.1.1",
"prettier": "^3.9.4",
"sass": "^1.32.10",
"typescript": "^6.0.3",
"typescript-eslint": "^8.16.0",
"vite": "^8.1.3",
"vite-plugin-singlefile": "^2.3.3"
}
}