This repository has been archived by the owner on Dec 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
72 lines (72 loc) · 2.52 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
{
"name": "routeshub-workspace",
"description": "A route management library and pattern for Angular",
"version": "0.0.0",
"license": "MIT",
"author": "Max Tarsis (https://github.com/untaggable)",
"private": true,
"scripts": {
"// - NG - //": "------------------------------",
"start": "ng serve --port 3000",
"build": "ng build routeshub --configuration production",
"test": "ng test routeshub",
"// - SNYK - //": "------------------------------",
"snyk:test": "snyk test",
"snyk:wizard": "snyk wizard",
"// - COMMIT - //": "------------------------------",
"lint-staged": "lint-staged",
"prettier": "prettier",
"// - CONTRIBUTORS - //": "------------------------------",
"contributors:add": "npx all-contributors add",
"contributors:generate": "npx all-contributors generate",
"// - PUBLICATION - //": "------------------------------",
"move:separate": "move ts3.5 dist/routeshub",
"copy:separate": "copy tsconfig.json ts3.5",
"downlevel:separate": "npx downlevel-dts . ts3.5 && yarn copy:separate && yarn move:separate",
"downlevel": "npx downlevel-dts dist/routeshub dist/routeshub",
"publication:prepare": "yarn build && yarn downlevel",
"publication:publish": "cd dist/routeshub && npm publish",
"publication": "yarn publication:prepare && yarn publication:publish"
},
"dependencies": {
"@angular/animations": "12.0.3",
"@angular/common": "12.0.3",
"@angular/compiler": "12.0.3",
"@angular/core": "12.0.3",
"@angular/forms": "12.0.3",
"@angular/platform-browser": "12.0.3",
"@angular/platform-browser-dynamic": "12.0.3",
"@angular/router": "12.0.3",
"hammerjs": "2.0.8",
"routeshub": "4.4.0",
"rxjs": "7.1.0",
"zone.js": "0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "12.0.0",
"@angular-devkit/build-angular": "12.0.3",
"@angular/cli": "12.0.3",
"@angular/compiler-cli": "12.0.3",
"@angular/language-service": "12.0.3",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@types/jest": "26.0.23",
"@types/node": "15.12.1",
"@routerkit/core": "0.9.0",
"all-contributors-cli": "6.20.0",
"codelyzer": "6.0.2",
"husky": "4.3.8",
"jest": "26.6.3",
"lint-staged": "11.0.0",
"ng-packagr": "12.0.3",
"prettier": "2.3.1",
"protractor": "7.0.0",
"snyk": "1.604.0",
"ts-node": "10.0.0",
"ts-jest": "26.5.6",
"tsickle": "0.40.0",
"tslib": "2.2.0",
"typescript": "4.2.4",
"yarn": "1.22.10"
}
}