-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
96 lines (96 loc) · 3.59 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
{
"name": "product-documentation",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"scully": "npm run lint:md && cross-env BUILD_ENV=develop npx scully --scanRoutes",
"scully:routes": "npx scully --scanRoutes",
"scully:serve": "npx scully serve",
"scully:prod": "npm run lint:md && npm run build && npm run scully:routes",
"scully:start": "npm run build && npm run scully",
"prepare": "husky install",
"lint": "ng lint",
"prettier": "prettier \"src/**/*.{ts,html,scss}\" --check",
"prettier:format": "prettier \"src/**/*.{ts,html,scss}\" --write",
"lint:md": "sh lint-markdown.sh"
},
"private": true,
"prettier": "./.prettierrc.js",
"dependencies": {
"@angular/animations": "~13.3.0",
"@angular/cdk": "^13.3.9",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/elements": "^13.4.0",
"@angular/forms": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/router": "~13.3.0",
"@scullyio/init": "^2.1.29",
"@scullyio/ng-lib": "^2.1.0",
"@scullyio/scully": "^2.1.0",
"@scullyio/scully-plugin-puppeteer": "^2.1.0",
"algoliasearch": "^4.14.3",
"crypto": "^1.0.1",
"fast-xml-parser": "^4.2.5",
"markdown-it-sanitizer": "^0.4.3",
"path-to-regexp": "^6.2.1",
"rxjs": "~7.5.0",
"sourcebuster": "^1.1.0",
"tslib": "^2.3.0",
"xmlbuilder": "^15.1.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^13.1.0",
"@angular-devkit/build-angular": "^13.3.11",
"@angular-eslint/builder": "13.5.0",
"@angular-eslint/eslint-plugin": "13.5.0",
"@angular-eslint/eslint-plugin-template": "13.5.0",
"@angular-eslint/schematics": "13.5.0",
"@angular-eslint/template-parser": "13.5.0",
"@angular/cli": "^13.3.11",
"@angular/compiler-cli": "~13.3.0",
"@scullyio/scully-plugin-base-href-rewrite": "^2.1.41",
"@tuplo/envsubst": "^1.15.2",
"@types/jasmine": "~3.10.0",
"@types/jsdom": "^16.2.14",
"@types/node": "^12.11.1",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/eslint-plugin-tslint": "^5.58.0",
"@typescript-eslint/parser": "5.27.1",
"angular-svg-icon": "^13.0.0",
"cheerio": "^1.0.0-rc.12",
"cross-env": "^7.0.3",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.3.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sonarjs": "^0.18.0",
"fs-extra": "^11.1.1",
"husky": "^8.0.0",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"lint-staged": "^13.2.1",
"markdownlint-cli": "^0.37.0",
"prettier": "^2.8.7",
"typescript": "~4.6.2",
"uuid": "^9.0.1"
},
"lint-staged": {
"src/**/*.{js,ts}": "eslint",
"src/**/*.{js,ts,css,scss,html}": "prettier --write"
}
}