-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
72 lines (72 loc) · 2.04 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": "fedistar",
"version": "1.9.12",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev -p 1420",
"build": "next build",
"tauri": "tauri",
"snap": "tauri-snap-packager",
"lint": "eslint src --ext ts,tsx",
"typecheck": "tsc -p . --noEmit",
"test": "NODE_ENV=test jest -u --maxWorkers=3",
"thirdparty": "cd src-tauri && cargo bundle-licenses --format json --output thirdparty.json && cd ../ && license-checker --production --json > thirdparty.json && node scripts/thirdparty.js",
"clean": "rm -rf src-tauri/target"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"moduleNameMapper": {
"^src/(.+)": "<rootDir>/src/$1"
},
"preset": "ts-jest/presets/default",
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testEnvironment": "node"
},
"dependencies": {
"@emoji-mart/react": "^1.1.1",
"@rsuite/icons": "^1.2.0",
"@tauri-apps/api": "1.6.0",
"dayjs": "^1.11.12",
"emoji-mart": "^5.6.0",
"megalodon": "10.0.6",
"next": "^14.2.17",
"parse-link-header": "^2.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.3.0",
"react-intl": "^6.6.8",
"react-virtuoso": "4.12.0",
"rsuite": "5.68.0",
"sanitize-html": "^2.13.1",
"tauri-plugin-window-state-api": "github:tauri-apps/tauri-plugin-window-state#v1"
},
"devDependencies": {
"@tauri-apps/cli": "^1.6.3",
"@types/jest": "^29.5.14",
"@types/node": "^20.16.13",
"@types/parse-link-header": "^2.0.3",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.1",
"jest": "^29.7.0",
"jsdom": "^25.0.1",
"sass": "^1.80.3",
"@h3poteto/tauri-snap-packager": "0.2.1",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}