-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "transcircle-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@11.4.0",
"scripts": {
"dev": "vite",
"build": "tsc -b tsconfig.app.json tsconfig.node.json && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,json}\"",
"typecheck": "tsc -b tsconfig.app.json tsconfig.node.json --noEmit",
"test": "echo \"no tests configured\"",
"preview": "vite preview",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm typecheck",
"commit-msg": "node .git-hooks/commit-msg.mjs \"$1\""
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs}": [
"eslint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"dompurify": "^3.2.4",
"i18next": "^26.3.0",
"md-editor-rt": "^6.5.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-i18next": "^17.0.8",
"react-router-dom": "^7.15.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.3",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^10.0.3",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"lint-staged": "^15.5.1",
"prettier": "^3.5.3",
"simple-git-hooks": "^2.12.1",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.2",
"vite": "^8.0.12"
}
}