forked from azerothcore/Keira3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.91 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
128
129
130
131
132
133
134
{
"name": "Keira3",
"version": "3.2.0",
"description": "Database Editor for AzerothCore",
"homepage": "https://github.com/AzerothCore/Keira3",
"author": {
"name": "Francesco Borzi'",
"email": "[email protected]",
"url": "https://github.com/FrancescoBorzi"
},
"main": "main.js",
"private": true,
"scripts": {
"postinstall": "npm run postinstall:electron && electron-builder install-app-deps",
"postinstall:web": "node postinstall-web",
"postinstall:electron": "node postinstall",
"ng": "ng",
"start": "npm run postinstall:electron && npm-run-all -p ng:serve electron:serve",
"build": "npm run postinstall:electron && npm run electron:serve-tsc && ng build",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"ng:serve": "ng serve",
"ng:serve:web": "npm run postinstall:web && ng serve -o",
"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:linux:ci": "npm run build:prod && electron-builder build --linux --publish=never",
"electron:windows": "npm run build:prod && electron-builder build --windows",
"electron:mac": "npm run build:prod && electron-builder build --mac",
"electron:mac:ci": "npm run build:prod && electron-builder build --mac --publish=never",
"format": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --no-editorconfig --write .",
"format-staged": "pretty-quick --staged",
"lint": "ng lint Keira3",
"test": "npm run postinstall:web && ng test",
"test-ci": "npm run postinstall:web && ng test --watch=false --browsers ChromeHeadless --code-coverage && (cat ./coverage/lcov.info | coveralls || true)",
"e2e": "cross-env TS_NODE_PROJECT='e2e/tsconfig.e2e.json' mocha --timeout 300000 --require ts-node/register e2e/**/*.e2e.ts",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"prepare": "husky install"
},
"dependencies": {
"@electron/remote": "1.2.0",
"@types/electron-settings": "4.0.0",
"acorn": "8.4.1",
"electron-settings": "4.0.2",
"mysql": "2.18.1",
"ngx-toastr": "14.0.0",
"ngx-ui-switch": "12.0.1",
"serialize-javascript": "6.0.0",
"sqlite3": "5.0.2",
"tslib": "2.3.0"
},
"devDependencies": {
"@angular-builders/custom-webpack": "12.1.0",
"@angular-devkit/build-angular": "12.1.2",
"@angular-eslint/builder": "12.3.1",
"@angular-eslint/eslint-plugin": "12.3.1",
"@angular-eslint/eslint-plugin-template": "12.3.1",
"@angular-eslint/schematics": "12.3.1",
"@angular-eslint/template-parser": "12.3.1",
"@angular/animations": "12.1.3",
"@angular/cli": "12.1.2",
"@angular/common": "12.1.3",
"@angular/compiler": "12.1.3",
"@angular/compiler-cli": "12.1.3",
"@angular/core": "12.1.3",
"@angular/forms": "12.1.3",
"@angular/platform-browser": "12.1.3",
"@angular/platform-browser-dynamic": "12.1.3",
"@angular/router": "12.1.3",
"@fortawesome/fontawesome-free": "5.15.3",
"@swimlane/ngx-datatable": "19.0.0",
"@types/jasmine": "3.8.1",
"@types/jasminewd2": "2.0.10",
"@types/mocha": "8.2.3",
"@types/mysql": "2.15.19",
"@types/node": "14.17.5",
"@types/sqlite3": "3.1.7",
"@types/sqlstring": "2.3.0",
"@typescript-eslint/eslint-plugin": "4.28.3",
"@typescript-eslint/parser": "4.28.3",
"bootstrap": "5.0.2",
"chai": "4.3.4",
"codelyzer": "6.0.2",
"conventional-changelog-cli": "2.1.1",
"coveralls": "3.1.1",
"cross-env": "7.0.3",
"electron": "13.1.7",
"electron-builder": "22.11.3",
"electron-reload": "1.5.0",
"eslint": "7.31.0",
"highlight.js": "10.7.3",
"husky": "7.0.1",
"jasmine-core": "3.8.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.4",
"karma-chrome-launcher": "3.1.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "4.0.1",
"karma-jasmine-html-reporter": "1.7.0",
"lint-staged": "11.0.1",
"mocha": "9.0.2",
"ngx-bootstrap": "6.2.0",
"ngx-clipboard": "14.0.1",
"ngx-highlightjs": "4.1.4",
"ngx-perfect-scrollbar": "10.1.1",
"ngx-typesafe-forms": "1.5.1",
"npm-run-all": "4.1.5",
"prettier": "2.3.2",
"pretty-quick": "3.1.1",
"rxjs": "6.6.7",
"spectron": "15.0.0",
"sqlstring": "2.3.2",
"squel": "5.13.0",
"ts-mockito": "2.6.1",
"ts-node": "10.1.0",
"typescript": "4.3.5",
"wait-on": "6.0.0",
"webdriver-manager": "12.1.8",
"zone.js": "0.11.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,json,css,scss,ts}": [
"npm run format-staged",
"git add"
]
}
}