-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 3.17 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
{
"name": "@our/web",
"private": true,
"version": "0.0.1",
"displayName": "Ourchitecture",
"description": "Ourchitecture website",
"author": "Ourchitecture Open Source",
"homepage": "https://ourchitecture.io/",
"license": "ISC",
"contributors": [
{
"name": "Eric Swanson (@ericis)",
"url": "https://ericis.github.io/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ourchitecture/site-ionic-ng.git"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:ci": "ng build --prod && cp ./docs/index.html ./docs/404.html",
"lint:config": "tslint-config-prettier-check ./tslint.json",
"lint:prettier": "prettier -c **/*.{js,ts,json,jsx,tsx,htm,html,xml,yml,yaml,md}",
"lint:ng": "ng lint",
"lint:fix": "pretty-quick --staged",
"test:lint": "run-s lint:prettier lint:ng",
"lint:commit": "run-s lint:config lint:fix test:lint",
"test:unit": "ng test",
"test:unit:ci": "ng test -c ci --code-coverage --browsers=ChromeHeadless",
"test:e2e": "ng e2e",
"test:e2e:ci": "ng e2e -c ci",
"test": "run-s test:lint test:unit test:e2e",
"test:ci": "run-s test:lint test:unit:ci test:e2e:ci"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint:commit",
"pre-push": "npm run test:ci",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"dependencies": {
"@angular/common": "~9.0.6",
"@angular/core": "~9.0.6",
"@angular/forms": "~9.0.6",
"@angular/platform-browser": "~9.0.6",
"@angular/platform-browser-dynamic": "~9.0.6",
"@angular/router": "~9.0.6",
"@ionic-native/core": "^5.0.0",
"@ionic-native/splash-screen": "^5.0.0",
"@ionic-native/status-bar": "^5.0.0",
"@ionic/angular": "^5.0.0",
"core-js": "^2.5.4",
"rxjs": "~6.5.1",
"tslib": "^1.10.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.6",
"@angular/cli": "~9.0.6",
"@angular/compiler": "~9.0.6",
"@angular/compiler-cli": "~9.0.6",
"@angular/language-service": "~9.0.6",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@ionic/angular-toolkit": "^2.1.1",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"husky": "^4.2.3",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^4.4.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"protractor": "~5.4.0",
"puppeteer": "^2.1.1",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "~3.7.5"
}
}