-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.14 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
{
"name": "mobu",
"version": "0.1.0",
"type": "module",
"private": true,
"homepage": "./",
"dependencies": {
"react": "18.3.1",
"react-dom": "18.3.1"
},
"devDependencies": {
"@node-rs/deno-lint": "1.20.4",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@tsconfig/vite-react": "3.4.0",
"@types/node": "22.10.1",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@vitejs/plugin-react": "4.3.4",
"all-contributors-cli": "6.26.1",
"dprint": "0.47.5",
"esbuild": "0.24.0",
"glob": "11.0.0",
"tsx": "4.19.2",
"typescript": "5.7.2",
"vite": "6.0.1"
},
"scripts": {
"start": "vite",
"prebuild": "tsc",
"build": "vite build",
"test": "glob -c \"node --import tsx --no-warnings --test\" \"./src/**/*.test.ts\"",
"format:check": "dprint check",
"format:fix": "dprint fmt",
"lint": "denolint"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}