-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.52 KB
/
package.json
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
{
"name": "typescript-react-application",
"version": "1.0.0",
"description": "TypeScript React application template",
"type": "module",
"scripts": {
"dev": "vite",
"build": "rimraf ./dist && vite build",
"preview": "vite preview",
"clean": "rimraf ./dist ./coverage",
"test": "rimraf ./coverage && vitest --run --coverage",
"test:watch": "vitest",
"lint": "eslint ./ --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint ./ --fix --ext .js,.jsx,.ts,.tsx",
"format": "prettier --check ./",
"format:fix": "prettier --write ./",
"prepare": "husky"
},
"keywords": [],
"author": "Michael Farquhar <[email protected]>",
"license": "MIT",
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^9.1.4",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.0",
"prettier": "^3.0.1",
"rimraf": "^6.0.1",
"typescript": "^5.1.6",
"vite": "^5.0.11",
"vitest": "^2.0.5"
}
}