-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.43 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "menu-bot-front",
"version": "0.0.1",
"private": true,
"homepage": "https://aikray.github.io/menu-bot-front",
"author": "AIKRAY",
"engines": {
"node": ">=18.0.0 <19",
"npm": ">=9.0.0 <10"
},
"scripts": {
"start": "react-scripts start",
"build": "tsc -p tsconfig.build.json && react-scripts build",
"start:prod": "npm run build && serve -s build",
"test": "react-scripts test",
"lint": "eslint --ext ts,tsx src",
"lint:fix": "npm run lint -- --fix",
"lint:build": "npm run lint && npm run build",
"check-libs-updates": "ncu",
"libs:update:patch": "ncu -u --target patch && npm i",
"libs:update:minor": "ncu -u --target minor && npm i",
"libs:update:major": "ncu -u && npm i",
"check-unused-exports": "ts-unused-exports ./tsconfig.json",
"predeploy": "npm run build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@aikray/menu-bot-common": "^0.0.8",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.9",
"classnames": "^2.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.8.1",
"react-scripts": "^5.0.1",
"web-vitals": "^3.1.1"
},
"devDependencies": {
"@types/node": "^18.14.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"gh-pages": "^5.0.0",
"http-proxy-middleware": "^2.0.6",
"node-sass": "^8.0.0",
"npm-check-updates": "^16.7.5",
"prettier": "^2.8.4",
"serve": "^14.2.0",
"ts-unused-exports": "^9.0.4",
"typescript": "^4.9.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}