-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.68 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
51
52
53
54
{
"name": "m-tartari.github.io",
"version": "1.0.0-alpha.0",
"type": "module",
"private": true,
"scripts": {
"start": "npm run start:dev",
"start:dev": "npm run dev",
"start:prod": "npm run preview",
"dev": "vite",
"build": "npm run build:dev",
"build:dev": "tsc && vite build",
"build:prod": "tsc --project tsconfig.prod.json && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"lint:fix": "npm run lint -- --fix",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "npm run test -- --coverage"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@fontsource/roboto": "^5.1.0",
"@mui/icons-material": "^6.2.1",
"@mui/material": "^6.0.2",
"@vitejs/plugin-react-swc": "^3.7.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.1.0",
"react-scroll-parallax": "^3.4.5",
"vite": "^6.0.5",
"vite-tsconfig-paths": "^5.1.4"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/coverage-istanbul": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"jsdom": "^25.0.1",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"vitest": "^2.0.1"
}
}