-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.64 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
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
{
"name": "ti-combat",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:fix": "eslint --fix",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:css:fix": "stylelint \"src/**/*.css\" --fix",
"preview": "vite preview",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "vitest --no-isolate --pool=threads",
"test:run": "vitest run --no-isolate --pool=threads",
"test:shuffle": "sh -c 'for i in $(seq ${N:-5}); do echo \"\\nShuffle run $i/$N...\"; SHUFFLE_SEED=random npx vitest run --no-isolate --pool=threads || exit 1; done'",
"test:snapshots": "vitest --no-isolate --pool=threads --config tests/snapshots/vitest.config.ts",
"test:snapshots:run": "vitest run --no-isolate --pool=threads --config tests/snapshots/vitest.config.ts",
"test:snapshots:update": "vitest run --config tests/snapshots/vitest.config.ts --update",
"profile": "vite-node tests/profile/run.ts",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.css": [
"stylelint --fix",
"prettier --write"
],
"*.{js,jsx,json,md,html}": [
"prettier --write"
]
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-select": "^2.2.6",
"clsx": "^2.1.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"remeda": "^2.33.6",
"unified": "^11.0.5",
"zod": "^4.3.6"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20260411.1",
"@eslint/js": "^10.0.1",
"@types/node": "^25.3.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"babel-plugin-react-compiler": "^1.0.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-check-file": "^3.3.1",
"eslint-plugin-react-hooks": "^7.1.0-canary-ab18f33d-20260220",
"eslint-plugin-react-refresh": "^0.5.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^17.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"stylelint": "^17.3.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-order": "^7.0.1",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1",
"vite-node": "^5.3.0",
"vitest": "^4.0.18"
}
}