-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
89 lines (89 loc) · 2.79 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
{
"name": "nextsketch",
"private": true,
"version": "0.0.0",
"scripts": {
"dev": "concurrently \"vite\" \"npm run start\"",
"start": "node server/server.js",
"build": "tsc && vite build && electron-builder",
"build-windows": "npm run build && electron-builder --windows",
"build-linux": "npm run build && electron-builder --linux",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"package": "electron-builder --dir",
"dist": "electron-builder"
},
"engines": {
"node": "18.x"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@fortawesome/fontawesome": "^1.1.8",
"@fortawesome/fontawesome-free-regular": "^5.0.13",
"@fortawesome/fontawesome-free-solid": "^5.0.13",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@mui/icons-material": "^5.14.13",
"@mui/lab": "^5.0.0-alpha.149",
"@mui/material": "^5.14.13",
"@mui/system": "^5.14.15",
"archiver": "^6.0.1",
"cors": "^2.8.5",
"d3": "^7.8.5",
"electron-fetch": "^1.9.1",
"express": "^4.18.2",
"file-saver": "^2.0.5",
"fs-extra": "^11.1.1",
"glob": "^10.3.10",
"isbrowser": "^0.1.0",
"jszip": "^3.10.1",
"merge-dirs": "^0.2.1",
"ncp": "^2.0.0",
"nodemon": "^3.0.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.11.0",
"resize-observer-polyfill": "^1.5.1",
"walk": "^2.3.15",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@electron-forge/plugin-vite": "^6.4.2",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.13",
"@types/d3": "^7.4.2",
"@types/prismjs": "^1.26.1",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vitejs/plugin-react": "^4.0.4",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.1",
"electron": "^26.1.0",
"electron-builder": "^24.6.4",
"eslint": "^8.48.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"tailwind-merge": "^1.14.0",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"tsx": "^3.13.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-electron": "^0.14.0",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-tsconfig-paths": "^4.2.1"
},
"main": "dist-electron/main.js"
}