-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.66 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
{
"name": "react-ts-template",
"private": true,
"version": "0.0.0",
"description": "A React + TypeScript starter template with Vite, ESLint, Prettier, and Vitest.",
"type": "module",
"scripts": {
"=== CORE WORKFLOW ===": "",
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"=== TESTING ===": "",
"test": "vitest run",
"test:watch": "vitest",
"test:run": "vitest run",
"=== CODE QUALITY ===": "",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,scss,less,html,json,md,mdx,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,css,scss,less,html,json,md,mdx,yaml,yml}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"=== SETUP ===": "",
"install:all": "npm install"
},
"dependencies": {
"react": "^19.2.6",
"react-dom": "^19.2.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^24.12.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.3.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"globals": "^17.6.0",
"typescript": "~6.0.2",
"typescript-eslint": "^8.59.2",
"prettier": "^3.7.4",
"vite": "^8.0.12",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@vitest/ui": "^4.0.16",
"jsdom": "^27.4.0",
"vitest": "^4.0.16"
},
"keywords": [
"react",
"typescript",
"vite",
"template",
"starter"
],
"author": "cH0NKIIs34L",
"license": "MIT"
}