forked from bennymeg/nx-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.9 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
{
"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": "^13.3.4",
"@angular-devkit/schematics": "^13.3.4",
"@nrwl/angular": "13.10.3",
"@nrwl/cli": "13.10.3",
"@nrwl/devkit": "13.10.3",
"@nrwl/eslint-plugin-nx": "13.10.3",
"@nrwl/jest": "13.10.3",
"@nrwl/js": "13.10.3",
"@nrwl/linter": "13.10.3",
"@nrwl/node": "13.10.3",
"@nrwl/nx-plugin": "13.10.3",
"@nrwl/workspace": "13.10.3",
"@types/circular-dependency-plugin": "^5.0.1",
"@types/copy-webpack-plugin": "^6.4.0",
"@types/jest": "27.0.2",
"@types/node": "14.14.33",
"@types/rimraf": "^3.0.0",
"@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.18.0",
"@typescript-eslint/parser": "5.18.0",
"bufferutil": "^4.0.6",
"canvas": "^2.9.1",
"electron": "^17.4.2",
"eslint": "8.12.0",
"eslint-config-prettier": "8.1.0",
"jest": "27.2.3",
"nx": "13.10.3",
"prettier": "2.5.1",
"shx": "^0.3.4",
"standard-version": "^9.2.0",
"ts-jest": "27.0.5",
"typescript": "4.6.3",
"utf-8-validate": "^5.0.9"
},
"dependencies": {
"@angular/core": "13.3.4",
"tslib": "^2.4.0"
}
}