-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.18 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
101
102
103
104
105
{
"name": "tiana-tables",
"productName": "Tiana Tables",
"description": "A SQL query tool for developers.",
"homepage": "https://github.com/jdeniau/tiana-tables#readme",
"license": "MIT",
"version": "0.0.27",
"main": ".vite/build/main.js",
"keywords": [],
"author": {
"name": "Julien Deniau",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/jdeniau/tiana-tables"
},
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "yarn lint:types && yarn lint:eslint",
"lint:eslint": "eslint --quiet .",
"lint:types": "tsc --noEmit",
"test": "vitest",
"storybook": "storybook dev -p 6006 --no-open",
"build-storybook": "storybook build",
"chromatic": "npx chromatic",
"prepare": "husky"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.{json,css,md}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --quiet --fix"
]
},
"dependencies": {
"antd": "^5.21.3",
"electron-log": "^5.2.0",
"electron-squirrel-startup": "^1.0.0",
"fuse.js": "^7.0.0",
"i18next": "^23.15.2",
"monaco-editor": "^0.47.0",
"mysql": "^2.18.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.2",
"react-router": "^6.26.2",
"styled-components": "^6.1.13",
"tiny-invariant": "^1.3.3",
"update-electron-app": "^3.0.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^2.0.2",
"@electron-forge/cli": "^7.5.0",
"@electron-forge/maker-deb": "^7.5.0",
"@electron-forge/maker-dmg": "^7.5.0",
"@electron-forge/maker-rpm": "^7.5.0",
"@electron-forge/maker-squirrel": "^7.5.0",
"@electron-forge/maker-zip": "^7.5.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.5.0",
"@electron-forge/plugin-vite": "^7.5.0",
"@electron-forge/publisher-github": "^7.5.0",
"@storybook/addon-essentials": "^8.3.5",
"@storybook/addon-interactions": "^8.3.5",
"@storybook/addon-links": "^8.3.5",
"@storybook/blocks": "^8.3.5",
"@storybook/react": "^8.3.5",
"@storybook/react-vite": "^8.3.5",
"@storybook/test": "^8.3.5",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/mysql": "^2.15.26",
"@types/node": "^20.16.11",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.2",
"chromatic": "^11.0.0",
"electron": "^32.1.2",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-storybook": "^0.9.0",
"husky": "^9.0.11",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.2",
"mysql2": "^3.11.3",
"prettier": "^3.3.2",
"react-router-dom": "^6.26.2",
"storybook": "^8.3.5",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"vite": "^5.0.0",
"vitest": "^2.1.2"
},
"packageManager": "[email protected]"
}