forked from bennymeg/nx-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.74 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.74 KB
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
{
"name": "nx-electron",
"version": "0.0.0",
"license": "Apache-2.0",
"description": "Electron Plugin for Nx",
"author": "Benny Megidish",
"scripts": {
"start": "nx run nx-electron:serve",
"build": "nx run nx-electron:build",
"link": "npm link ./dist/packages/nx-electron/",
"test": "nx run nx-electron:test",
"test:watch": "nx run nx-electron:test -- --watch",
"lint": "nx run nx-electron:lint",
"migrate": "nx migrate latest",
"publish": "cd dist/packages/nx-electron && npm publish",
"publish:alpha": "cd dist/packages/nx-electron && npm publish --tag alpha",
"publish:beta": "cd dist/packages/nx-electron && npm publish --tag beta",
"release": "cd packages/nx-electron && npm run release"
},
"private": true,
"devDependencies": {
"@eslint/eslintrc": "^2.1.1",
"@nx/devkit": "22.4.4",
"@nx/eslint": "22.4.4",
"@nx/eslint-plugin": "22.4.4",
"@nx/jest": "22.4.4",
"@nx/js": "22.4.4",
"@nx/node": "22.4.4",
"@nx/plugin": "22.4.4",
"@nx/workspace": "22.4.4",
"@swc-node/register": "1.10.10",
"@swc/core": "^1.11.29",
"@types/jest": "29.5.14",
"@types/node": "^20.14.2",
"@types/webpack": "^5.28.5",
"@types/webpack-node-externals": "^3.0.4",
"bufferutil": "^4.0.9",
"electron": "^34.5.6",
"eslint": "^9.8.0",
"eslint-config-prettier": "10.0.0",
"jest": "29.7.0",
"nx": "22.4.4",
"prettier": "3.2.5",
"shx": "^0.4.0",
"standard-version": "^9.5.0",
"ts-jest": "29.1.2",
"ts-node": "^10.9.2",
"typescript": "5.7.3",
"typescript-eslint": "^8.19.0"
},
"dependencies": {
"electron-builder": "^26.0.0",
"rxjs": "^7.8.2",
"rxjs-for-await": "^1.0.0"
},
"engines": {
"node": ">= 18.0.0"
}
}