-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.3 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.3 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
{
"name": "react-typescript-boilerplate",
"version": "1.0.0",
"description": "Boilerplate for react-typescript-eslint setup",
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"build": "vite build --logLevel warn",
"start": "vite preview --port 8080",
"dev": "vite --port 8080",
"lint": "eslint --ext .ts,.tsx src/",
"lint:error": "eslint --ext .ts,.tsx src/ --quiet",
"typecheck": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/limgit/react-typescript-boilerplate.git"
},
"author": "HyunSu Lim",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"prettier": "3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1",
"vite": "^8.0.2"
},
"dependencies": {
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"packageManager": "pnpm@10.32.1"
}