generated from WeAreAcademy/academy-react-ts-starter-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.49 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
{
"name": "carltonlnd-todo-frontend",
"private": true,
"version": "0.4.0",
"type": "module",
"scripts": {
"build": "tsc && vite build",
"start:dev": "vite --mode development --port 3000",
"start:prod": "vite --mode production --port 3000",
"format": "prettier --write src index.html",
"format:check": "prettier --check src index.html",
"lint": "eslint --max-warnings=0 src",
"preview": "vite preview",
"test": "vitest --no-watch --passWithNoTests --reporter verbose",
"test:watch": "vitest --reporter verbose",
"test:gui": "vitest --ui",
"type-check": "tsc --noEmit"
},
"dependencies": {
"axios": "^1.4.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/ui": "^0.31.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"jsdom": "^22.0.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vite-plugin-checker": "^0.6.0",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.32.0"
}
}