-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.84 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.84 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
{
"name": "semaninha-lastfm",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --config config/vite.config.ts",
"build": "tsc -b config/tsconfig.app.json && vite build --config config/vite.config.ts",
"lint": "eslint . --config config/eslint.config.js",
"lint:fix": "eslint . --config config/eslint.config.js --fix",
"type-check": "tsc --noEmit --project config/tsconfig.json",
"preview": "vite preview --config config/vite.config.ts",
"test": "vitest --config config/vite.config.ts",
"test:ui": "vitest --ui --config config/vite.config.ts",
"test:run": "vitest run --config config/vite.config.ts",
"test:coverage": "vitest run --coverage --config config/vite.config.ts",
"test:build": "npm run type-check && npm run build",
"ci": "npm run lint && npm run type-check && npm run build"
},
"dependencies": {
"@phosphor-icons/react": "^2.1.7",
"@sentry/react": "^10.38.0",
"axios": "^1.13.5",
"cheerio": "^1.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-loader-spinner": "^6.1.6",
"react-router-dom": "^6.30.3",
"react-toastify": "^10.0.6"
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"eslint": "^9.11.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.12",
"globals": "^15.9.0",
"jsdom": "^26.1.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.8.0",
"vite": "^6.4.2",
"vite-plugin-checker": "^0.8.0",
"vitest": "^3.2.4"
}
}