-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.07 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
{
"private": true,
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview --port 5173",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"test": "vitest run --coverage --reporter verbose",
"test:watch": "vitest watch",
"test:e2e": "playwright test"
},
"devDependencies": {
"@csstools/postcss-global-data": "^1.0.1",
"@playwright/test": "^1.29.2",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.28.1",
"@vitest/ui": "^0.28.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"playwright": "^1.29.2",
"postcss-preset-env": "^8.0.1",
"prettier": "2.8.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"vite-plugin-favicons-inject": "^2.2.0",
"vitest": "^0.28.1"
}
}