-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.94 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.94 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
69
70
71
72
73
74
75
76
77
{
"name": "flippio",
"version": "0.3.22",
"description": "Database viewer with device connection",
"author": "koliastanis",
"homepage": "https://github.com/groot007/flippio",
"sideEffects": false,
"main": "./src-tauri/target/release/flippio",
"scripts": {
"format": "prettier --write .",
"lint": "eslint",
"lint:fix": "eslint --fix",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "yarn typecheck:web",
"dev:renderer": "cd src/renderer && vite",
"build:renderer": "cd src/renderer && vite build",
"test": "vitest run --config vitest.config.ts",
"test:coverage": "vitest run --coverage --config vitest.config.ts",
"test:rust": "cd src-tauri && cargo test",
"test:all": "yarn test && yarn test:rust",
"precommit": "yarn lint && yarn typecheck && yarn test:all",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build && ./scripts/post-bundle.sh",
"tauri:build:debug": "export $(cat .env | xargs) && tauri build --debug",
"tauri:sign-source": "export $(cat .env | xargs) && node scripts/sign-source-binaries.js \"$APPLE_SIGNING_IDENTITY\"",
"tauri:sign-binaries": "export $(cat .env | xargs) && node scripts/sign-bundled-binaries.js",
"tauri:build:signed": "export $(cat .env | xargs) && npm run tauri:sign-source && tauri build",
"tauri:post-sign": "export $(cat .env | xargs) && node scripts/sign-bundled-binaries.js \"$PWD/src-tauri/target/release/bundle/macos/Flippio.app\" \"$APPLE_SIGNING_IDENTITY\"",
"version:update": "node scripts/update-version.js"
},
"dependencies": {
"@chakra-ui/react": "^3.13.0",
"@emotion/react": "^11.14.0",
"@sentry/react": "^9.33.0",
"@tanstack/react-query": "^5.74.7",
"@tauri-apps/api": "^2.0.0",
"@tauri-apps/plugin-log": "^2.5.1",
"@uiw/react-json-view": "^2.0.0-alpha.30",
"ag-grid-community": "^33.1.1",
"ag-grid-react": "^33.1.1",
"chakra-react-select": "^6.1.0",
"date-fns": "^3.6.0",
"json-edit-react": "^1.26.2",
"next-themes": "^0.4.6",
"react-icons": "^5.5.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@antfu/eslint-config": "^4.10.2",
"@sentry/vite-plugin": "^3.2.3",
"@tauri-apps/cli": "^2.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.13.4",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/coverage-v8": "3.2.4",
"better-sqlite3": "12.2.0",
"dotenv": "^16.4.7",
"eslint": "^9.20.1",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"fix-path": "^4.0.0",
"jsdom": "^26.0.0",
"prettier": "^3.5.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sqlite3": "5.1.7",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.0.9"
}
}