-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.48 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
{
"name": "vite-workshop",
"version": "1.0.0",
"type": "module",
"private": true,
"scripts": {
"postinstall": "npx @elbaph/generate-dependabot-config-from-package-json --no-major-updates --labels dependencies,auto-merge-from-default",
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc",
"profile": "npm run build && source-map-explorer dist/**/*.js",
"test": "vitest run",
"test:watch": "vitest watch",
"format": "prettier --cache --write .",
"format-check": "prettier --cache --check .",
"lint": "eslint ./ --max-warnings 0",
"lint:fix": "npm run lint -- --fix"
},
"dependencies": {
"date-fns": "^4.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@arabasta/eslint-config": "^1.0.8",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@total-typescript/ts-reset": "^0.6.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.57.1",
"jsdom": "^25.0.1",
"msw": "^2.6.9",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"source-map-explorer": "^2.5.3",
"tailwindcss": "^3.4.16",
"typescript": "~5.6",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.0.5"
}
}