-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 3.11 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "mockingbird",
"version": "0.1.0-beta",
"scripts": {
"test": "ts-mocha -p test/tsconfig.spec.json --timeout 20000 test/**/*.spec.ts",
"test-single": "ts-mocha -p test/tsconfig.spec.json --timeout 20000 test/start-stop-server.spec.ts",
"serve": "concurrently \"npm run serve:app\" \"wait-on -d 10000 ./dist && npm run serve:electron\"",
"serve:app": "ng build --configuration=development --sourceMap=true --watch --output-hashing=all",
"serve:electron": "concurrently \"npm run compile-electron-main\" \"wait-on -d 2000 ./dist/electron-main.js && electron ./dist/electron-main.js --serve --remote-debugging-port=9222\"",
"compile-electron-main": "tsc ./src/electron/electron-main.ts --Outdir ./dist",
"build:prod": "ng build --prod --configuration=production && npm run compile-electron-main",
"clean-packages": "rm -rf ./packages",
"clean-packages-win": "del /s /q .\\packages",
"package:win": "npm run clean-packages-win && electron-builder --win --config electron-builder.json",
"package:linux": "npm run clean-packages && electron-builder --linux --config electron-builder.json",
"package:mac": "npm run clean-packages && electron-builder --mac --config electron-builder.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^8.2.11",
"@angular/common": "^8.2.11",
"@angular/compiler": "^8.2.11",
"@angular/core": "^8.2.11",
"@angular/forms": "^8.2.11",
"@angular/platform-browser": "^8.2.11",
"@angular/platform-browser-dynamic": "^8.2.11",
"@angular/router": "^8.2.11",
"core-js": "^2.5.4",
"cuid": "^2.1.6",
"electron": "^7.1.3",
"electron-builder": "^21.2.0",
"electron-store": "^5.1.0",
"express": "^4.17.1",
"http-proxy-middleware": "^0.20.0",
"json-schema-faker": "^0.5.0-rc23",
"json-to-ts": "^1.6.0",
"jsonminify": "^0.4.1",
"lodash": "^4.17.15",
"monaco-editor": "^0.18.1",
"ng-zorro-antd": "^8.5.2",
"request": "^2.88.0",
"rxjs": "^6.0.0",
"swagger-parser": "^8.0.3",
"tslib": "^1.10.0",
"vm": "^0.1.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^8.2.0",
"@angular-devkit/build-angular": "~0.803.12",
"@angular/cli": "~8.3.12",
"@angular/compiler-cli": "^8.2.11",
"@angular/language-service": "^8.2.11",
"@types/chai": "^4.2.7",
"@types/chai-as-promised": "^7.1.2",
"@types/express": "^4.17.2",
"@types/lodash": "^4.14.149",
"@types/mocha": "^5.2.7",
"@types/node": "~12.12.7",
"@types/request": "^2.48.3",
"@types/request-promise-native": "^1.0.17",
"@types/webdriverio": "^4.13.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codelyzer": "^5.0.1",
"concurrently": "^5.0.0",
"mocha": "^6.2.2",
"request-promise-native": "^1.0.8",
"spectron": "^9.0.0",
"ts-mocha": "^6.0.0",
"ts-node": "~5.0.1",
"tslint": "~5.9.1",
"typescript": "~3.5.3",
"wait-on": "^3.3.0"
},
"build": {
"electronDownload": {
"mirror": "https://npm.taobao.org/mirrors/electron/",
"quiet": false,
"verifyChecksum": false
}
}
}