-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 3.33 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
{
"name": "dev-demo",
"description": "DevIntent Application Development Tools",
"version": "0.7.1",
"repository": "https://github.com/DevIntent/dev",
"homepage": "https://devintent.dev",
"bugs": "https://github.com/DevIntent/dev/issues",
"engines": {
"node": ">=12"
},
"scripts": {
"ng": "ng",
"prettier": "prettier --write \"**/*.{js,json,css,scss,less,md,ts,html,component.html}\"",
"start": "ng serve dev-demo",
"build": "ng build dev-demo",
"build:prod": "ng build dev-demo --prod",
"build:lib": "ng build dev --prod && npm run build:lib:scss",
"build:lib:scss": "scss-bundle -c scss-bundle.config.json",
"build:schematics": "tsc -p ./projects/schematics/tsconfig.json",
"publish:lib": "npm run lint && npm run build:lib && npm publish ./dist/dev --access public",
"publish:schematics": "npm run build:schematics && npm publish ./projects/schematics --access public",
"postinstall": "cd ./node_modules/protractor && npm i webdriver-manager@latest",
"deploy": "ng deploy",
"test": "ng test && npm run test:schematics",
"test:schematics": "npm run build:schematics && jasmine ./projects/schematics/src/**/*_spec.js",
"lint": "ng lint",
"e2e": "ng e2e",
"smex": "source-map-explorer",
"update": "npm-check -u"
},
"private": true,
"dependencies": {
"@angular/animations": "~9.1.9",
"@angular/cdk": "~9.2.4",
"@angular/common": "~9.1.9",
"@angular/compiler": "~9.1.9",
"@angular/core": "~9.1.9",
"@angular/fire": "^6.0.0",
"@angular/flex-layout": "^9.0.0-beta.29",
"@angular/forms": "~9.1.9",
"@angular/material": "~9.2.4",
"@angular/platform-browser": "~9.1.9",
"@angular/platform-browser-dynamic": "~9.1.9",
"@angular/router": "~9.1.9",
"@schuchard/prettier": "^3.1.0",
"firebase": "^7.14.2",
"logrocket": "^1.0.7",
"rxjs": "~6.5.5",
"tslib": "^1.11.1",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/architect": "~0.901.7",
"@angular-devkit/build-angular": "~0.901.7",
"@angular-devkit/build-ng-packagr": "~0.901.7",
"@angular-devkit/core": "^9.1.7",
"@angular-devkit/schematics": "^9.1.7",
"@angular/cli": "~9.1.7",
"@angular/compiler-cli": "~9.1.9",
"@angular/language-service": "~9.1.9",
"@types/jasmine": "^3.5.10",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^13.13.4",
"codelyzer": "^5.2.2",
"firebase-tools": "^8.2.0",
"fuzzy": "^0.1.3",
"husky": "4.2.5",
"inquirer": "^6.5.2",
"inquirer-autocomplete-prompt": "^1.0.2",
"jasmine-core": "^3.5.0",
"jasmine-spec-reporter": "^5.0.2",
"karma": "^5.0.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.0",
"karma-jasmine": "^3.1.1",
"karma-jasmine-html-reporter": "^1.5.3",
"lint-staged": "10.2.2",
"ng-packagr": "^9.1.5",
"npm-check": "~5.9.2",
"prettier": "2.0.5",
"protractor": "~5.4.4",
"rxjs-tslint-rules": "^4.31.0",
"scss-bundle": "^3.1.1",
"source-map-explorer": "^2.4.2",
"ts-node": "^8.9.1",
"tslint": "^6.1.2",
"tslint-config-prettier": "1.18.0",
"typescript": "~3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,html,component.html}": [
"prettier --write",
"git add"
]
}
}