-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"name": "terms-kr",
"private": true,
"version": "1.0.0",
"description": "AI/ML 용어집 - 파이토치 한국 사용자 모임(PyTorchKR)",
"author": "9bow",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PyTorchKorea/kr-terms-poc"
},
"type": "module",
"packageManager": "npm@11.12.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"predev": "node scripts/sync-public-data.mjs",
"dev": "vite",
"prebuild": "node scripts/sync-public-data.mjs",
"build": "npm run validate:data && tsc -b && vite build",
"lint": "eslint .",
"audit:security": "npm audit --audit-level=moderate && npm audit signatures",
"validate:data": "node scripts/validate-term-data.mjs",
"preview": "vite preview"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.0.1",
"@mui/material": "^9.0.1",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-router-dom": "^7.15.1"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.8.0",
"@types/react": "^19.2.15",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.2.0",
"eslint": "^9.39.4",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.59.4",
"vite": "^7.3.3"
},
"overrides": {
"minimatch": ">=10.2.3"
}
}