-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.84 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
{
"name": "@bbs/reader",
"private": true,
"version": "0.0.0",
"description": "BBS.io Reader is a message reader application for BBS usage for NNTP and QWK",
"main": "src/main.tsx",
"keywords": [
"bbs",
"nntp",
"forum",
"bulletinboard",
"smtp",
"pop",
"email",
"qwk"
],
"author": "Michael J. Ryan <[email protected]> (https://tracker1.dev/)",
"contributors": [
{
"name": "Michael J. Ryan",
"email": "[email protected]",
"url": "https://tracker1.dev/"
}
],
"homepage": "https://reader.bbs.io/",
"repository": {
"type": "git",
"url": "https://github.com/bbs-io/reader.git"
},
"bugs": {
"url": "https://github.com/bbs-io/reader/issues",
"email": "[email protected]"
},
"license": "MIT",
"type": "module",
"devDependencies": {
"@tauri-apps/cli": "^1.2.2",
"@types/lodash": "^4.14.191",
"@types/node": "^18.7.10",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/redux-batched-subscribe": "^0.1.4",
"@types/redux-logger": "^3.0.9",
"@vitejs/plugin-react": "^3.0.0",
"rome": "^11.0.0",
"typescript": "^4.6.4",
"vite": "^4.0.0"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@fontsource/roboto": "^4.5.8",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.8",
"@reduxjs/toolkit": "^1.9.2",
"@tauri-apps/api": "^1.2.0",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"redux-batched-subscribe": "^0.1.6",
"redux-logger": "^3.0.6"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "rome ci .",
"format": "rome check --apply . && rome format --write . && rome ci ."
}
}