forked from RiotGames/key-conjurer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.1 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^2.1.3"
},
"devDependencies": {
"@babel/preset-react": "^7.23.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.35",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.6.0",
"jsdom": "^24.0.0",
"prettier": "^2.8.3",
"typescript": "^4.9.5",
"vite": "^5.1.4",
"vite-plugin-markdown": "^2.2.0",
"vitest": "^1.3.1"
},
"scripts": {
"start": "vite",
"build": "tsc --noEmit && vite build",
"test": "vitest",
"serve": "vite preview",
"fmt": "prettier -w src/**/*.{tsx,ts}"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}