-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.64 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
{
"name": "visualization",
"version": "1.0.0",
"main": "dist/main.js",
"author": "Vlad Gramuzov <[email protected]>",
"license": "Proprietary",
"private": true,
"scripts": {
"package": "NODE_ENV=production yarn build && electron-builder --publish never -c electron-builder.json",
"package-win": "set NODE_ENV=production && yarn build && electron-builder --publish never -c electron-builder.json",
"start": "concurrently -k \"node esbuild.js\" \"yarn electron .\"",
"build": "node esbuild.js",
"lint": "eslint --ext .ts src",
"html": "showdown makehtml -i readme.md -o html/index.html && cp -r docs/ html/docs"
},
"devDependencies": {
"@esbuild-plugins/node-modules-polyfill": "^0.2.2",
"@ladle/react": "^3.3.0",
"@types/lodash": "^4.14.200",
"@types/murmurhash-js": "^1.0.5",
"@types/node": "^20.8.8",
"@types/react": "^18.2.31",
"@types/react-dom": "^18.2.14",
"@types/tmp": "^0.2.5",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"concurrently": "^8.2.2",
"electron": "^27.0.2",
"electron-builder": "^24.6.4",
"electron-is-dev": "^2.0.0",
"esbuild": "^0.14.11",
"esbuild-plugin-copy": "^2.1.1",
"eslint": "^8.52.0",
"showdown": "^2.1.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fontsource/roboto": "^5.0.8",
"@mui/material": "^5.14.15",
"highs": "^1.0.0",
"lodash": "^4.17.21",
"murmurhash-js": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"save-svg-as-png": "^1.4.17",
"tmp": "^0.2.1"
}
}