forked from DogReactor/AigisPlayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.31 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "aigisplayer",
"version": "2.3.4",
"description": "Toolkit for Aigis",
"productName": "AigisPlayer",
"homepage": "https://github.com/DogReactor/AigisPlayer",
"repository": {
"type": "git",
"url": "https://github.com/DogReactor/AigisPlayer.git"
},
"author": {
"name": "Yukimir",
"email": "[email protected]"
},
"main": "main.js",
"private": true,
"scripts": {
"pinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p ng:serve electron:serve",
"build": "rimraf dist && ng build --prod && npm run electron:build-tsc && npm run electron:build",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"ng:serve": "ng serve",
"ng:serve:web": "ng serve -c web -o",
"electron:serve-tsc": "tsc -p tsconfig-serve.json",
"electron:build-tsc": "tsc -p tsconfig-build.json && copyfiles assets/**/*.* dist",
"electron:build": "copyfiles package.json dist && cd dist && npm install && npx electron-rebuild",
"electron:serve": "wait-on http-get://localhost:4200/ && npm run electron:serve-tsc && electron . --serve",
"electron:local": "npm run build:prod && cd dist && 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",
"electron:publish": "npm run build:prod && npx electron-builder build --publish onTagOrDraft",
"test": "ng test",
"e2e": "npm run build:prod && mocha --timeout 300000 --require ts-node/register e2e/**/*.spec.ts",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"lint": "ng lint"
},
"dependencies": {
"@electron/remote": "^1.0.4",
"aigis-fuel": "git+https://github.com/Yukimir/AigisFuel.git",
"compare-versions": "^3.4.0",
"electron-log": "^2.2.17",
"electron-store": "5.2.0",
"electron-updater": "4.2.0",
"element-angular": "^0.7.6",
"gifuct-js": "^1.0.0",
"request": "^2.88.2",
"unzipper": "^0.9.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "8.2.0",
"@angular-devkit/build-angular": "0.803.6",
"@angular-eslint/builder": "0.0.1-alpha.17",
"@angular/animations": "8.2.14",
"@angular/cli": "8.3.6",
"@angular/common": "8.2.12",
"@angular/compiler": "8.2.12",
"@angular/compiler-cli": "8.2.12",
"@angular/core": "8.2.12",
"@angular/forms": "8.2.12",
"@angular/language-service": "8.2.12",
"@angular/platform-browser": "8.2.12",
"@angular/platform-browser-dynamic": "8.2.12",
"@angular/router": "8.2.12",
"@ngx-translate/core": "11.0.1",
"@ngx-translate/http-loader": "4.0.0",
"@types/express": "^4.16.0",
"@types/jasmine": "3.3.16",
"@types/jasminewd2": "2.0.6",
"@types/mocha": "5.2.7",
"@types/node": "^13.0.0",
"@types/request": "^2.48.1",
"@types/rx": "^4.1.1",
"@types/unzip": "^0.1.1",
"@typescript-eslint/eslint-plugin": "2.8.0",
"@typescript-eslint/parser": "2.8.0",
"chai": "4.2.0",
"codelyzer": "5.1.0",
"conventional-changelog-cli": "2.0.25",
"copyfiles": "^2.1.1",
"core-js": "3.1.4",
"cz-conventional-changelog": "^2.1.0",
"electron": "13.6.1",
"electron-builder": "21.2.0",
"electron-rebuild": "^2.3.5",
"electron-reload": "1.5.0",
"eslint": "6.6.0",
"eslint-plugin-import": "2.18.2",
"husky": "^3.0.1",
"jasmine-core": "3.4.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "4.2.0",
"karma-coverage-istanbul-reporter": "2.1.0",
"karma-electron": "6.3.0",
"karma-jasmine": "2.0.1",
"karma-jasmine-html-reporter": "1.4.2",
"mkdirp": "0.5.1",
"mocha": "6.2.0",
"npm-run-all": "4.1.5",
"prettier": "^1.18.2",
"rimraf": "^2.7.1",
"rxjs": "6.5.3",
"rxjs-compat": "^6.5.4",
"spectron": "9.0.0",
"ts-node": "8.3.0",
"tslint": "5.11.0",
"typescript": "3.5.3",
"wait-on": "3.3.0",
"webdriver-manager": "12.1.5",
"zone.js": "0.8.29"
},
"license": "SEE LICENSE IN LICENSE.md",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*": [
"prettier",
"lint",
"git add"
]
}
}