-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
package.json
90 lines (90 loc) · 3.1 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
{
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development electron ./build/main.js",
"test": "rm -rf ./test/tmp/* && mocha -r espower-typescript/guess -r tsconfig-paths/register \"test/**/*.test.ts\"",
"clean:dist": "rimraf ./dist/*",
"clean:build": "rimraf ./build/*",
"dev": "npm run clean:build && concurrently \"npm run dev:main\" \"npm run dev:renderer\"",
"dev:main": "vite build --watch --config ./vite.main.config.mts",
"dev:renderer": "vite --config ./vite.render.config.mts",
"version:up": "node ./scripts/version_up.js",
"_build": "npm run clean:build && npm run version:up && concurrently \"npm run build:main\" \"npm run build:renderer\"",
"build:main": "cross-env NODE_ENV=production vite build --config ./vite.main.config.mts",
"build:renderer": "cross-env NODE_ENV=production vite build --config ./vite.render.config.mts",
"build": "npm run _build",
"make": "node scripts/make.js",
"make:dev": "cross-env SKIP_NOTARIZATION=1 cross-env MAKE_FOR=dev npm run make",
"make:linux": "cross-env SKIP_NOTARIZATION=1 cross-env MAKE_FOR=linux npm run make",
"make:win": "cross-env SKIP_NOTARIZATION=1 cross-env MAKE_FOR=win npm run make",
"publish": "electron-builder --mac --win --linux -p always"
},
"dependencies": {
"axios": "1.7.4",
"compare-versions": "6.1.1",
"dayjs": "1.11.12",
"electron-updater": "6.3.0",
"electron-window-state": "5.0.3",
"express": "4.21.1",
"lodash": "4.17.21",
"md5": "2.3.0",
"md5-file": "5.0.0",
"mkdirp": "3.0.1",
"potdb": "2.6.6",
"tslib": "2.6.3",
"uuid": "10.0.0"
},
"devDependencies": {
"@chakra-ui/react": "2.8.2",
"@electron/notarize": "^2.3.2",
"@emotion/react": "11.13.0",
"@emotion/styled": "11.13.0",
"@tabler/icons-react": "3.11.0",
"@types/assert": "1.5.10",
"@types/codemirror": "5.60.15",
"@types/express": "4.17.21",
"@types/lodash": "4.17.7",
"@types/md5": "2.3.5",
"@types/mkdirp": "1.0.2",
"@types/mocha": "10.0.7",
"@types/node": "22.0.0",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/react-window": "1.8.8",
"@types/uuid": "10.0.0",
"@vitejs/plugin-react": "4.3.1",
"ahooks": "3.8.0",
"clsx": "2.1.1",
"codemirror": "5.65.17",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"dotenv": "16.4.5",
"electron": "30.1.2",
"electron-builder": "24.13.3",
"espower-typescript": "10.0.1",
"execa": "9.3.0",
"fs-extra": "11.2.0",
"jotai": "2.9.1",
"mocha": "10.7.0",
"power-assert": "1.6.1",
"prettier": "3.3.3",
"pretty-bytes": "6.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "5.2.1",
"react-router-dom": "6.25.1",
"react-window": "1.8.10",
"rimraf": "^6.0.1",
"sass": "1.77.8",
"smooth-scroll-into-view-if-needed": "2.0.2",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"vite": "4.5.5",
"vite-plugin-static-copy": "1.0.6",
"vite-plugin-svgr": "4.2.0",
"vite-tsconfig-paths": "4.3.2"
},
"build": {
"afterSign": "scripts/notarize.js"
}
}