-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.33 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": "looking-glass",
"productName": "The Looking Glass",
"version": "0.6.0",
"description": "Electron application to browse various website content from one app. Built for development practice only.",
"main": "dist_main/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/reptarsrage/looking-glass.git"
},
"author": {
"name": "Reptarsrage",
"email": "[email protected]",
"url": "https://github.com/reptarsrage"
},
"license": "Unlicense",
"bugs": {
"url": "https://github.com/reptarsrage/looking-glass/issues"
},
"keywords": [
"vite",
"react",
"electron",
"typescript"
],
"homepage": "https://github.com/reptarsrage/looking-glass#readme",
"scripts": {
"build": "npm run build:vite && npm run build:electron",
"build:vite": "vite build",
"build:electron": "tsc -p electron",
"clean": "rimraf dist dist_main dist_renderer",
"dev": "concurrently \"npm run dev:vite\" \" npm run dev:electron\"",
"dev:vite": "vite",
"dev:electron": "npm run build:electron && electron .",
"dist": "npm run build && electron-builder",
"format": "prettier .",
"format-check": "prettier --check .",
"lint": "eslint . --ext ts,tsx --cache",
"pack": "npm run build && electron-builder --dir",
"prepare": "husky install",
"release": "standard-version",
"start": "npm run dist && \"./dist/win-unpacked/The Looking-Glass.exe\"",
"type-check": "tsc --noEmit --project tsconfig.json"
},
"dependencies": {
"@mixmaxhq/promise-pool": "^2.0.0",
"@popperjs/core": "^2.11.6",
"@react-spring/web": "^9.7.0",
"@use-gesture/react": "^10.2.24",
"@vitejs/plugin-react": "^3.1.0",
"clsx": "^1.2.1",
"electron-devtools-installer": "^3.2.0",
"electron-dl": "^3.5.0",
"electron-is-dev": "^2.0.0",
"electron-log": "4.4.8",
"electron-updater": "^5.3.0",
"image-size": "^1.0.2",
"memoize-one": "^6.0.0",
"mime-types": "^2.1.35",
"nanoid": "3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-popper": "^2.3.0",
"react-popper-tooltip": "^4.4.2",
"react-query": "^3.39.3",
"react-router-dom": "^6.8.1",
"rooks": "^7.4.4",
"sharp": "^0.31.3",
"tiny-invariant": "^1.3.1",
"vite": "^4.1.4",
"zustand": "^4.3.3"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@types/mime-types": "^2.1.1",
"@types/node": "^18.14.2",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "5.53.0",
"@typescript-eslint/parser": "5.53.0",
"autoprefixer": "^10.4.13",
"concurrently": "^7.6.0",
"cz-conventional-changelog": "^3.3.0",
"electron": "^23.1.1",
"electron-builder": "^23.6.0",
"eslint": "8.35.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"postcss": "^8.4.21",
"prettier": "2.8.4",
"standard-version": "^9.5.0",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite-plugin-svgr": "^2.4.0"
}
}