-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 3.19 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
{
"name": "matex",
"version": "1.0.0",
"description": "a mock app",
"private": true,
"author": "lqd1434",
"license": "ISC",
"homepage": ".",
"main": "./release/build/main/main.js",
"keywords": [
"electron"
],
"repository": {
"type": "git",
"url": "https://github.com/lqd1434/Matex.git"
},
"scripts": {
"start": "ts-node ./scripts/start.ts",
"dev": "concurrently \"vite\" \"npm run dev:electron\" \"npm run watch:electron\"",
"dev:react": "vite",
"dev:server": "nodemon --config nodemon-express.json",
"test:server": "node ./test/index.js",
"remove": "rm -R ./dev",
"dev:electron": "npm run remove && cross-env NODE_ENV=development ts-node ./scripts/parcel-dev.ts",
"watch:electron": "wait-on ./dev/main.js && nodemon --config nodemon-electron.json",
"test:build": "electron release/build/main/main.js",
"build": "concurrently \"npm run build:react\" \"npm run build:electron\"",
"build:react": "vite build && ts-node ./scripts/copyFile.ts",
"build:electron": "cross-env NODE_ENV=production parcel build ./electron/main.ts --out-dir ./release/build/main --target electron",
"preview": "vite preview",
"autoo": "autoo",
"release": "cross-env NODE_ENV=production electron-builder build --config electron_builder.json --publish never"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.3.0",
"@types/body-parser": "^1.19.2",
"@types/color-string": "^1.5.0",
"@types/express": "^4.17.13",
"@types/history": "^4.7.9",
"@types/inquirer": "^8.1.3",
"@types/nedb": "^1.8.12",
"@types/node": "^16.11.7",
"@types/parcel-bundler": "^1.12.4",
"@types/react": "17.0.21",
"@types/react-dom": "17.0.9",
"@types/request": "^2.48.7",
"@types/shelljs": "^0.8.9",
"@types/signale": "^1.4.2",
"@types/wait-on": "^5.3.1",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoo": "^1.2.0",
"chalk": "3.0.0",
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"electron": "^15.3.1",
"electron-builder": "^22.13.1",
"electron-debug": "^3.2.0",
"electron-rebuild": "^3.2.5",
"electron-reload": "^2.0.0-alpha.1",
"eslint": "^8.2.0",
"eslint-plugin-react": "^7.27.0",
"glob": "^7.2.0",
"inquirer": "^8.2.0",
"nodemon": "^2.0.15",
"parcel-bundler": "^1.12.5",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.4.1",
"sass": "^1.42.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"vite": "2.7.3",
"wait-on": "^6.0.0"
},
"dependencies": {
"ahooks": "^2.10.12",
"axios": "^0.24.0",
"body-parser": "^1.19.0",
"clsx": "^1.1.1",
"execa": "^5.1.1",
"express": "^4.17.1",
"fs-extra": "^10.0.0",
"history": "^5.1.0",
"magic-string": "^0.25.7",
"monaco-editor": "^0.30.1",
"nedb": "^1.8.0",
"qs": "^6.10.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.2",
"sequelize": "^6.12.0-beta.3",
"shelljs": "^0.8.4",
"signale": "^1.4.0",
"sqlite3": "^5.0.2",
"winston": "^3.3.3",
"zustand": "^3.6.5"
},
"engines": {
"node": "^12.20.0 || >=14.13.1"
}
}