-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
60 lines (60 loc) · 1.24 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
55
56
57
58
59
60
{
"name": "protobuf-decoder",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "vite",
"build": "vite build --outDir build",
"test": "vitest --run --globals --reporter verbose",
"test:watch": "vitest --globals --reporter verbose --ui"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@testing-library/react": "^15.0.4",
"@vitejs/plugin-react-swc": "^3.6.0",
"@vitest/coverage-v8": "^1.5.2",
"@vitest/ui": "^1.5.2",
"husky": ">=1",
"jsdom": "^24.0.0",
"lint-staged": ">=8",
"prettier": "1.18.2",
"react-dom": "^18.3.0",
"vite": "^5.4.6",
"vitest": "^1.5.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"buffer": "^6.0.3",
"jsbi": "^4.3.0",
"react": "^18.3.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.5"
}
}