-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.94 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.94 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"description": "web app to track ragnarok mvp respawn",
"type": "module",
"scripts": {
"dev": "vite --open",
"build": "tsc && vite build",
"preview": "vite preview",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"vercel-deploy": "vercel --env CI=false --prod"
},
"dependencies": {
"@linaria/core": "^6.1.0",
"@linaria/react": "^6.1.0",
"@styled-icons/feather": "^10.34.0",
"@vercel/analytics": "^1.1.1",
"@vercel/speed-insights": "^1.0.2",
"body-scroll-lock": "^4.0.0-beta.0",
"dayjs": "^1.11.10",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-intl": "^5.24.8"
},
"devDependencies": {
"@types/body-scroll-lock": "^3.1.0",
"@types/node": "^18.19.6",
"@types/react": "^18.0.5",
"@types/react-dom": "^18.0.1",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"@vitejs/plugin-react": "^4.0.0",
"@wyw-in-js/vite": "^0.5.1",
"babel-plugin-formatjs": "^10.3.19",
"eslint": "^8.15.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"gh-pages": "^3.2.3",
"prettier": "2.6.2",
"typescript": "^4.6.3",
"vercel": "^32.4.1",
"vite": "^5.0.11",
"vite-imagetools": "^5.0.9",
"vite-plugin-pwa": "^0.17.5"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RagnarokMvpTimer/frontend.git"
},
"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"
]
}
}