-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
100 lines (100 loc) · 3.23 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "trufos",
"productName": "Trufos",
"version": "0.0.1",
"description": "Trufos - A cross-platform REST client",
"main": ".webpack/main",
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx .",
"prettier": "npx prettier --write '**/*.{ts,tsx}'",
"prettier-check": "npx prettier --check '**/*.{ts,tsx}'",
"test": "jest"
},
"devDependencies": {
"@electron-forge/cli": "^7.6.1",
"@electron-forge/maker-dmg": "^7.6.1",
"@electron-forge/maker-squirrel": "^7.6.1",
"@electron-forge/maker-zip": "^7.6.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.6.1",
"@electron-forge/plugin-fuses": "^7.6.1",
"@electron-forge/plugin-webpack": "^7.6.1",
"@electron/fuses": "^1.8.0",
"@testing-library/react": "^16.0.1",
"@types/jest": "^29.5.12",
"@types/jest-when": "^3.5.5",
"@types/mime-types": "^2.1.4",
"@types/postman-collection": "^3.5.10",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.1",
"@types/tmp": "^0.2.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/webpack-asset-relocator-loader": "^1.7.3",
"autoprefixer": "^10.4.19",
"css-loader": "^7.1.2",
"electron": "31.0.2",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"jest-environment-jsdom": "^29.7.0",
"jest-when": "^3.6.0",
"memfs": "^4.14.0",
"monaco-editor-webpack-plugin": "^7.1.0",
"node-loader": "^2.1.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.14",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.2.0",
"typescript": "5.6",
"web-streams-polyfill": "^4.0.0"
},
"keywords": [],
"author": {
"name": "The Trufos Authors"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-select": "^2.1.5",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.1.6",
"@react-icons/all-files": "^4.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"electron-squirrel-startup": "^1.0.1",
"immer": "^10.1.1",
"jest": "^29.7.0",
"lucide-react": "^0.378.0",
"mime-types": "^2.1.35",
"monaco-editor": "^0.49.0",
"postcss-loader": "^8.1.1",
"postman-collection": "^4.5.0",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.3.1",
"react-icons": "^5.4.0",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"template-replace-stream": "^2.1.2",
"tmp": "^0.2.3",
"undici": "^6.21.1",
"zustand": "^5.0.1"
}
}