-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 909 Bytes
/
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
{
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test:1": "node --experimental-loader ./tests/tsx-loader.js tests/1.test.js",
"test:2": "node --experimental-loader ./tests/tsx-loader.js tests/2.test.js",
"test:3": "node --experimental-loader ./tests/tsx-loader.js tests/3.test.js"
},
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"esbuild": "^0.15.10",
"eslint": "^8.25.0",
"eslint-config-react-minimal": "^3.1.0",
"global-jsdom": "^24.0.0",
"jsdom": "^24.0.0",
"typescript": "^5.4.5",
"vite": "^5.2.11"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"eslint-config-react-minimal"
],
"env": {
"es2022": true
}
},
"volta": {
"node": "20.13.1"
}
}