-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
102 lines (102 loc) · 3.82 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "dmnmgr-client",
"version": "1.1.0",
"license": "Apache 2.0",
"description": "dmnmgr - A toolkit to work with dmn",
"main": "main.js",
"author": {
"name": "David Ibl",
"email": "[email protected]",
"url": "https://medium.com/@davidibl"
},
"repository": {
"type": "git",
"url": "https://github.com/davidibl/dmnmgr-client"
},
"bugs": {
"url": "https://github.com/davidibl/dmnmgr-client/issues"
},
"scripts": {
"ng": "ng",
"build-main": "tsc ./main.ts",
"changelog": "conventional-changelog -p -i .\\src\\assets\\CHANGELOG.md -s -r 0",
"start": "ng serve --aot=true",
"start-prod": "ng serve --prod",
"build": "npm run build-main && ng build",
"build-prod": "npm run build-main && ng build --prod",
"electron": "npm run build-main && ng build --prod && electron .",
"electron:serve-tsc": "tsc -p tsconfig-serve.json",
"electron:serve": "wait-on http-get://localhost:4200/ && npm run electron:serve-tsc && electron . --serve",
"electron:local": "npm run build-prod && electron .",
"electron:linux": "npm run build-prod && electron-builder build --linux",
"electron:windows": "npm run build-prod && electron-builder build --windows",
"electron:mac": "npm run build-prod && electron-builder build --mac",
"release": "npm version minor && npm run changelog && npm run electron:windows",
"release-patch": "npm version patch && npm run changelog && npm run electron:windows",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"rebuild": ".\\node_modules\\.bin\\electron-rebuild"
},
"private": true,
"dependencies": {
"@angular/animations": "^9.1.4",
"@angular/common": "^9.1.4",
"@angular/compiler": "^9.1.4",
"@angular/core": "^9.1.4",
"@angular/forms": "^9.1.4",
"@angular/platform-browser": "^9.1.4",
"@angular/platform-browser-dynamic": "^9.1.4",
"@angular/router": "^9.1.4",
"@angular/service-worker": "^9.1.4",
"@fortawesome/fontawesome-free-webfonts": "1.0.1",
"@xnoname/web-components": "^1.1.0",
"angular-split": "3.0.2",
"bpmn-js": "3.0.1",
"breakpoint-sass": "2.7.0",
"core-js": "^2.4.1",
"dmn-js": "7.5.0",
"font-awesome": "4.7.0",
"getbase": "3.1.5",
"moment": "2.18.1",
"nodegit": "^0.26.2",
"v8-compile-cache": "2.1.0",
"rxjs": "^6.5.5",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.4",
"@angular/cli": "^9.1.4",
"@angular/compiler-cli": "^9.1.4",
"@angular/language-service": "^9.1.4",
"@fortawesome/fontawesome-free-webfonts": "1.0.1",
"@types/electron": "1.6.10",
"@types/google.analytics": "0.0.35",
"@types/jasmine": "~2.5.53",
"@types/jasminewd2": "~2.0.2",
"@types/node": "^12.11.1",
"@types/nodegit": "0.24.13",
"codelyzer": "^5.1.2",
"conventional-changelog": "3.1.18",
"electron": "^8.2.0",
"electron-builder": "22.3.2",
"electron-rebuild": "1.10.1",
"electron-reload": "1.5.0",
"jasmine-core": "~2.6.2",
"jasmine-spec-reporter": "~4.1.0",
"karma": "~1.7.0",
"karma-chrome-launcher": "~2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"node-gyp": "6.0.1",
"node-sass": "4.13.0",
"protractor": "~5.1.2",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "~3.8.3",
"wait-on": "3.2.0"
}
}