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
112 lines (112 loc) · 3.58 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.58 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "nx-electron",
"version": "11.4.1",
"description": "Electron Plugin for Nx",
"main": "index.js",
"types": "index.d.ts",
"author": "Benny Megidish",
"license": "Apache-2.0",
"private": true,
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint --fix",
"test": "jest --maxWorkers=1 .*.spec.ts",
"compile": "tsc",
"build": "npm run clear:all && tsc && npm run copy:all && npm run permission",
"publish": "cd build && npm publish",
"release": "standard-version",
"postrelease": "git push --follow-tags && npm run build && npm run publish",
"permission": "node ./scripts/make_build_public.js",
"copy:all": "npm run copy:ts && npm run copy:json && npm run copy:readme && npm run copy:licence && npm run copy:ignore",
"copy:ts": "shx cp -rf src build/",
"copy:json": "shx cp -rf *.json build/",
"copy:readme": "shx cp -rf README.md build/",
"copy:licence": "shx cp -rf LICENSE build/",
"copy:ignore": "shx cp -rf .*ignore build/",
"clear:all": "npm run clear:ts && npm run clear:json && npm run clear:readme && npm run clear:licence && npm run clear:ignore",
"clear:ts": "shx rm -rf ./build/src",
"clear:json": "shx rm -f ./build/*.json",
"clear:readme": "shx rm -f ./build/README.md",
"clear:licence": "shx rm -f ./build/LICENSE",
"clear:ignore": "shx rm -f ./build/.*ignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bennymeg/nx-electron.git"
},
"bugs": {
"url": "https://github.com/bennymeg/nx-electron/issues"
},
"keywords": [
"nx",
"electron",
"forge",
"package",
"make",
"bundle",
"monorepo",
"schematics",
"generators",
"builders"
],
"schematics": "./collection.json",
"builders": "./builders.json",
"ng-update": {
"requirements": {},
"migrations": "./migrations.json"
},
"peerDependencies": {
"@nrwl/workspace": "*"
},
"dependencies": {
"@angular-devkit/architect": "0.1100.7",
"@angular-devkit/build-webpack": "0.1100.7",
"@angular-devkit/core": "11.0.7",
"@angular-devkit/schematics": "11.0.7",
"@nrwl/jest": "^11.2.6",
"@nrwl/linter": "^11.2.6",
"circular-dependency-plugin": "^5.2.2",
"copy-webpack-plugin": "^6.4.1",
"electron-builder": "^22.10.5",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"license-webpack-plugin": "^2.3.11",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"strip-json-comments": "^3.1.1",
"terser-webpack-plugin": "^4.2.3",
"tree-kill": "^1.2.2",
"ts-loader": "^8.0.14",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"webpack": "^4.46.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpack-node-externals": "^2.5.2"
},
"devDependencies": {
"@nrwl/devkit": "^11.2.6",
"@nrwl/workspace": "^11.2.6",
"@types/circular-dependency-plugin": "^5.0.1",
"@types/copy-webpack-plugin": "^6.4.0",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.22",
"@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": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"bufferutil": "^4.0.3",
"canvas": "^2.6.1",
"electron": "9.4.2",
"eslint": "^7.21.0",
"eslint-plugin-jest": "^24.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"shx": "^0.3.3",
"standard-version": "^9.2.0",
"ts-jest": "^26.5.2",
"typescript": "4.1.3",
"utf-8-validate": "^5.0.4"
}
}