-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.86 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.86 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
{
"name": "tauri_github_analyzer",
"version": "1.1.4",
"description": "Viewer of GitHub traffic built in Tauri",
"author": "sake <sakelog.website@gmail.com>",
"license": "MIT",
"scripts": {
"start": "cross-env BROWSER=none vite",
"prebuild": "tsc --noEmit && yarn lint",
"build": "vite build",
"test": "",
"lint": "eslint --ext .ts,.tsx src/",
"tauri": "tauri",
"dev": "tauri dev",
"release": "tauri build"
},
"dependencies": {
"@chakra-ui/react": "^1.8.8",
"@emotion/react": "^11.9.0",
"@emotion/styled": "^11.8.1",
"@reduxjs/toolkit": "^1.8.1",
"@tauri-apps/api": "^1.0.0-rc.3",
"chart.js": "^3.7.1",
"date-fns": "^2.28.0",
"date-fns-tz": "^1.3.3",
"framer-motion": "6",
"react": "^18.0.0",
"react-chartjs-2": "^4.1.0",
"react-dom": "^18.0.0",
"react-redux": "^8.0.1",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@tauri-apps/cli": "1.0.2",
"@tsconfig/vite-react": "^1.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.25",
"@types/react": "^18.0.6",
"@types/react-dom": "^18.0.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.22.0",
"@vitejs/plugin-react": "^1.3.2",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"prettier": "^2.6.2",
"typescript": "^4.6.3",
"vite": "^2.9.7"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}