-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "memory-react-vite",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vite build",
"lint": "eslint --config eslint.config.js . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest run --coverage"
},
"dependencies": {
"prop-types": "^15.8.1",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@babel/core": "^7.27.3",
"@babel/eslint-parser": "^7.27.1",
"@eslint/js": "^9.27.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.1.6",
"@vitejs/plugin-react-swc": "^3.10.0",
"@vitest/coverage-v8": "^3.1.4",
"@vitest/ui": "^3.1.4",
"babel-preset-jest": "^29.6.3",
"eslint": "^9.27.0",
"eslint-plugin-jest": "^28.11.1",
"jsdom": "^26.1.0",
"vite": "^6.3.5",
"vitest": "^3.1.4"
}
}