-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 5.35 KB
/
Copy pathpackage.json
File metadata and controls
134 lines (134 loc) · 5.35 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "Chino",
"version": "0.1.4b",
"description": "Database Editor",
"homepage": "",
"author": {
"name": "Francesco Borzi'",
"email": "borzifrancesco@gmail.com",
"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 Chino",
"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": "2.0.1",
"@types/electron-settings": "4.0.0",
"acorn": "8.5.0",
"electron-settings": "4.0.2",
"mysql": "2.18.1",
"ngx-toastr": "14.1.4",
"ngx-ui-switch": "12.0.1",
"serialize-javascript": "6.0.0",
"sqlite3": "5.0.2",
"tslib": "2.3.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "12.1.3",
"@angular-devkit/build-angular": "12.2.12",
"@angular-eslint/builder": "12.6.1",
"@angular-eslint/eslint-plugin": "12.6.1",
"@angular-eslint/eslint-plugin-template": "12.6.1",
"@angular-eslint/schematics": "12.6.1",
"@angular-eslint/template-parser": "12.6.1",
"@angular/animations": "12.2.13",
"@angular/cli": "12.2.12",
"@angular/common": "12.2.13",
"@angular/compiler": "12.2.13",
"@angular/compiler-cli": "12.2.13",
"@angular/core": "12.2.13",
"@angular/forms": "12.2.13",
"@angular/platform-browser": "12.2.13",
"@angular/platform-browser-dynamic": "12.2.13",
"@angular/router": "12.2.13",
"@fortawesome/fontawesome-free": "5.15.4",
"@swimlane/ngx-datatable": "20.0.0",
"@types/jasmine": "3.10.2",
"@types/jasminewd2": "2.0.10",
"@types/mocha": "9.0.0",
"@types/mysql": "2.15.19",
"@types/node": "16.11.6",
"@types/sqlite3": "3.1.7",
"@types/sqlstring": "2.3.0",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"bootstrap": "5.1.3",
"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.6.1",
"electron-builder": "22.11.3",
"electron-reload": "1.5.0",
"eslint": "7.32.0",
"highlight.js": "10.7.3",
"husky": "7.0.4",
"jasmine-core": "3.10.1",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.7",
"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.2.6",
"mocha": "9.1.3",
"ngx-bootstrap": "7.0.0",
"ngx-clipboard": "14.0.1",
"ngx-highlightjs": "5.0.0",
"ngx-perfect-scrollbar": "10.1.1",
"ngx-typesafe-forms": "1.5.2",
"npm-run-all": "4.1.5",
"prettier": "2.4.1",
"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.3.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"
]
}
}