-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "onote",
"private": true,
"engines": {
"node": ">=v16.13",
"npm": ">=8.1"
},
"version": "0.12.0-alpha",
"main": "packages/electron/dist/index.cjs",
"type": "commonjs",
"packageManager": "yarn@1.22.22",
"workspaces": [
"packages/*"
],
"scripts": {
"postinstall": "patch-package && electron-builder install-app-deps",
"build": "rm -rf packages/*/dist && turbo build",
"compile": "cross-env NODE_ENV=production npm run build && cross-env NODE_ENV=production electron-builder --config .electron-builder.config.js",
"bdd": "chokidar \"features/**\" -c \"yarn cucumber-js\"",
"test:watch": "yarn jest --watch",
"test": "jest --coverage=false && yarn build && yarn test:e2e",
"test:e2e": "yarn cucumber-js",
"dev": "yarn build && cross-env NODE_OPTIONS=\"--max-old-space-size=8192\" node scripts/watch.js",
"lint": "eslint . --ext js,ts,tsx"
},
"dependencies": {
"@hpcc-js/wasm": "^2.15.3",
"cron": "^3.1.7",
"default-gateway": "^6.0.3",
"electron-updater": "^6.1.1",
"express": "^4.18.2",
"ssh2": "^1.11.0",
"webdav-server": "^2.6.2"
},
"resolutions": {
"monaco-editor": "0.45.0",
"webpack": "5.88.2",
"@types/mdast": "4.0.3",
"vfile-message": "4.0.0"
},
"devDependencies": {
"@cucumber/cucumber": "^10.3.1",
"chokidar": "^3.5.3"
}
}