-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 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
{
"name": "azure-checkin",
"version": "1.4.2",
"scripts": {
"ng": "ng",
"start": "swa start",
"serve": "npm run write:env -s && ng serve",
"build": "npm run write:env -s && ng build",
"watch": "npm run write:env -s && ng build --watch --configuration development",
"lint": "ng lint",
"write:env": "ngx-scripts env npm_package_version",
"prettier": "prettier --write \"./src/**/*.{ts,js,html,scss}\"",
"prepare": "husky install",
"extract-admins": "node scripts/admin-extract/extract.js",
"prerelease:check": "semantic-release --dry-run"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.3.6",
"@angular/cdk": "^13.3.6",
"@angular/common": "~13.3.6",
"@angular/compiler": "~13.3.6",
"@angular/core": "~13.3.6",
"@angular/forms": "~13.3.6",
"@angular/material": "^13.3.6",
"@angular/platform-browser": "~13.3.6",
"@angular/platform-browser-dynamic": "~13.3.6",
"@angular/router": "~13.3.6",
"rxjs": "^7.5.4",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.2.5",
"@angular-eslint/builder": "13.2.1",
"@angular-eslint/eslint-plugin": "13.2.1",
"@angular-eslint/eslint-plugin-template": "13.2.1",
"@angular-eslint/schematics": "13.2.1",
"@angular-eslint/template-parser": "13.2.1",
"@angular/cli": "^13.2.5",
"@angular/compiler-cli": "~13.3.6",
"@azure/static-web-apps-cli": "^1.1.10",
"@ngx-rocket/scripts": "^5.2.1",
"@types/node": "^14.18.12",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint": "^8.10.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"semantic-release": "^19.0.2",
"semantic-release-node-prep": "^3.0.0",
"typescript": "^4.5.5"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"overrides": [
{
"files": "*.scss",
"options": {
"singleQuote": false
}
}
]
},
"release": {
"extends": "semantic-release-node-prep",
"branches": "main"
}
}