forked from bennymeg/nx-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (62 loc) · 1.95 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",
"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": "14.2.3",
"@angular-devkit/schematics": "14.2.3",
"@nrwl/angular": "14.8.6",
"@nrwl/cli": "14.8.6",
"@nrwl/devkit": "14.8.6",
"@nrwl/eslint-plugin-nx": "14.8.6",
"@nrwl/jest": "14.8.6",
"@nrwl/js": "14.8.6",
"@nrwl/linter": "14.8.6",
"@nrwl/node": "14.8.6",
"@nrwl/nx-plugin": "14.8.6",
"@nrwl/workspace": "14.8.6",
"@swc-node/register": "^1.4.2",
"@swc/core": "^1.2.173",
"@types/circular-dependency-plugin": "^5.0.5",
"@types/copy-webpack-plugin": "^6.4.0",
"@types/jest": "28.1.8",
"@types/node": "18.7.1",
"@types/rimraf": "^3.0.2",
"@types/terser-webpack-plugin": "^4.2.0",
"@types/webpack": "^4.41.26",
"@types/webpack-merge": "^4.1.5",
"@types/webpack-node-externals": "^2.5.0",
"@typescript-eslint/eslint-plugin": "5.36.1",
"@typescript-eslint/parser": "5.36.1",
"bufferutil": "^4.0.6",
"canvas": "^2.9.1",
"electron": "^22.2.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.1.0",
"jest": "28.1.3",
"nx": "14.8.6",
"prettier": "2.6.2",
"shx": "^0.3.4",
"standard-version": "^9.5.0",
"ts-jest": "28.0.8",
"typescript": "4.8.4",
"utf-8-validate": "^5.0.9"
},
"dependencies": {
"@angular/core": "14.2.2",
"tslib": "^2.4.1"
}
}