-
-
Notifications
You must be signed in to change notification settings - Fork 90
/
package.json
62 lines (62 loc) · 1.88 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
{
"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": {
"@angular-devkit/core": "18.2.5",
"@angular-devkit/schematics": "18.2.5",
"@nx/angular": "20.1.4",
"@nx/devkit": "20.1.4",
"@nx/eslint": "20.1.4",
"@nx/eslint-plugin": "20.1.4",
"@nx/jest": "20.1.4",
"@nx/js": "20.1.4",
"@nx/node": "20.1.4",
"@nx/plugin": "20.1.4",
"@nx/workspace": "20.1.4",
"@schematics/angular": "18.2.5",
"@swc-node/register": "1.9.2",
"@swc/core": "^1.5.29",
"@types/jest": "29.5.13",
"@types/node": "^20.14.2",
"@types/webpack": "^5.28.5",
"@types/webpack-node-externals": "^3.0.4",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"bufferutil": "^4.0.8",
"electron": "^33.3.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"nx": "20.1.4",
"prettier": "3.2.5",
"shx": "^0.3.4",
"standard-version": "^9.5.0",
"ts-jest": "29.1.2",
"typescript": "5.5.4"
},
"dependencies": {
"electron-builder": "^25.1.8",
"rxjs": "^7.8.1",
"rxjs-for-await": "^1.0.0"
},
"engines": {
"node": ">= 16.0.0"
}
}