-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.85 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
61
62
63
64
65
{
"name": "waifuland-fe",
"version": "0.1.3",
"private": true,
"type": "module",
"dependencies": {
"@chakra-ui/icons": "2.0.11",
"@chakra-ui/react": "1.8.8",
"@emotion/react": "11.9.0",
"@emotion/styled": "11.8.1",
"apisauce": "2.1.5",
"framer-motion": "6.3.3",
"i18next": "21.9.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-i18next": "11.18.6",
"react-icons": "4.3.1",
"react-router-dom": "6.4.2"
},
"scripts": {
"prebuild": "rm -rf dist",
"lint": "eslint . --ext .ts,.tsx --fix",
"prettier": "prettier --write .",
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "^18.11.3",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@vitejs/plugin-react": "^2.1.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.10",
"prettier": "2.7.1",
"typescript": "^4.8.4",
"vite": "^3.1.8",
"vite-plugin-svgr": "^2.2.2",
"vite-tsconfig-paths": "^3.5.2"
}
}