-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 789 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 789 Bytes
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
{
"name": "samples",
"version": "0.0.1",
"private": true,
"proxy": "https://api.github.com",
"type": "module",
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-tea-cup": "5.1.3",
"tea-cup-fp": "^1.1.0"
},
"scripts": {
"dev": "vite --force",
"compile": "tsc",
"build": "tsc -b && vite build",
"test:updatestanpshots": "vitest -u",
"test": "vitest --run"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4"
}
}