Fix linter errors; add domain; add unit test support

This commit is contained in:
Niels Kooiman
2019-08-14 10:13:49 +02:00
parent 6f70ba29c9
commit 1b6fa67294
21 changed files with 628 additions and 29 deletions

View File

@@ -3,9 +3,11 @@
"version": "0.1.0",
"private": true,
"scripts": {
"start": "npm run serve",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
"lint": "vue-cli-service lint",
"test": "jasmine-ts --config=jasmine.json --project tsconfig.spec.json"
},
"dependencies": {
"core-js": "^2.6.5",
@@ -13,15 +15,21 @@
"vue": "^2.6.10",
"vue-class-component": "^7.0.2",
"vue-property-decorator": "^8.1.0",
"vue-router": "^3.0.3"
"vue-router": "^3.0.3",
"@nx/typescript-domain": "git+https://solidt.eu/git/niels.kooiman/typescript-domain.git"
},
"devDependencies": {
"@types/jasmine": "^3.3.9",
"@vue/cli-plugin-babel": "^3.10.0",
"@vue/cli-plugin-pwa": "^3.10.0",
"@vue/cli-plugin-typescript": "^3.10.0",
"@vue/cli-service": "^3.10.0",
"jasmine": "^3.3.1",
"jasmine-core": "^3.3.0",
"jasmine-ts": "^0.3.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.4.3",
"vue-template-compiler": "^2.6.10"
}