-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
113 lines (113 loc) · 3.96 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
106
107
108
109
110
111
112
113
{
"name": "icon-shelf",
"version": "0.1.28",
"productName": "Icon Shelf",
"description": "Icon Shelf is a free icon manager for developers",
"private": true,
"engines": {
"node": ">=v16.13",
"npm": ">=8.1"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"build": "node scripts/build.js",
"precompile": "cross-env MODE=production npm run build",
"compile": "electron-builder build --config .electron-builder.config.js",
"publish": "npm run precompile && electron-builder build --config .electron-builder.config.js --publish always -mwl",
"pretest": "npm run build",
"test": "xvfb-maybe -- node tests/app.spec.js",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts,tsx",
"typecheck-main": "tsc --noEmit -p packages/main/tsconfig.json",
"typecheck-preload": "tsc --noEmit -p packages/preload/tsconfig.json",
"typecheck-renderer": "tsc --noEmit -p packages/renderer/tsconfig.json",
"typecheck": "npm run typecheck-main && npm run typecheck-preload && npm run typecheck-renderer",
"pretypecheck-renderer": "dts-cb -i packages/preload/src/**/*.ts -o packages/preload/exposedInMainWorld.d.ts",
"postinstall": "cross-env ELECTRON_RUN_AS_NODE=1 electron scripts/update-electron-vendors.mjs"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^4.10.1",
"@types/electron-devtools-installer": "^2.2.4",
"@types/htmltojsx": "^0.0.32",
"@types/lodash": "^4.14.200",
"@types/react": "^18.2.34",
"@types/react-color": "^3.0.9",
"@types/react-dom": "^18.2.14",
"@types/svgo": "^2.6.4",
"@types/universal-analytics": "^0.4.5",
"@types/uuid": "^9.0.6",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-react": "^4.1.1",
"autoprefixer": "^10.4.16",
"clean-terminal-webpack-plugin": "^3.0.0",
"cross-env": "7.0.3",
"dts-for-context-bridge": "0.7.1",
"electron": "^27.0.3",
"electron-builder": "^24.6.4",
"electron-devtools-installer": "3.2.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"nano-staged": "0.8.0",
"playwright": "^1.39.0",
"postcss": "^8.4.31",
"prettier-plugin-tailwindcss": "^0.5.6",
"react-popper": "^2.3.0",
"simple-git-hooks": "^2.9.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vite-plugin-svgr": "^2.2.1",
"xvfb-maybe": "^0.2.1"
},
"dependencies": {
"@codemirror/autocomplete": "^0.19.14",
"@codemirror/closebrackets": "^0.19.1",
"@codemirror/commands": "^0.19.8",
"@codemirror/comment": "^0.19.1",
"@codemirror/highlight": "^0.19.7",
"@codemirror/history": "^0.19.2",
"@codemirror/lang-javascript": "^0.19.7",
"@codemirror/language": "^0.19.8",
"@codemirror/matchbrackets": "^0.19.4",
"@codemirror/state": "^0.19.9",
"@codemirror/theme-one-dark": "^0.19.1",
"@codemirror/view": "^0.19.47",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@fontsource/dm-sans": "^5.0.17",
"@headlessui/react": "^1.7.17",
"@mierak/react-virtualized-grid": "^0.0.5-ALPHA",
"@tanstack/react-query": "^4.10.1",
"chokidar": "^3.5.3",
"dexie": "^3.2.4",
"electron-log": "^5.0.0",
"electron-store": "^8.1.0",
"electron-updater": "^6.1.4",
"htmltojsx": "^0.3.0",
"lodash": "^4.17.21",
"query-string": "^8.1.0",
"rc-tooltip": "^6.1.2",
"re-resizable": "^6.9.11",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^18.2.0",
"react-hotkeys": "^2.0.0",
"react-images-uploading": "^3.1.7",
"react-inlinesvg": "^4.1.0",
"react-router-dom": "^6.18.0",
"svgo": "^2.8.0",
"uuid": "^9.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Icon-Shelf/icon-shelf.git"
},
"author": {
"name": "Robin",
"url": "https://github.com/MrRobz"
},
"license": "MIT"
}