This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.07 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
{
"name": "stitch-compute-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build-prod": "ng build --configuration production",
"extract-i18n": "ng run extract-i18n --format json --out-file 'src/assets/locale/en.json'",
"test": "ng test",
"lint": "ng lint",
"prettier-format": "prettier --config .prettierrc '{src,e2e}/**/*.ts' 'src/**/*.html' '**/*.md' '{src,e2e}/**/*.json' --write",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular-devkit/architect": "^0.1501.6",
"@angular-devkit/core": "^18.2.4",
"@angular-devkit/schematics": "^17.0.8",
"@angular/animations": "^17.1.3",
"@angular/common": "^14.3.0",
"@angular/compiler": "^14.3.0",
"@angular/core": "^14.2.12",
"@angular/forms": "^14.2.12",
"@angular/platform-browser": "^14.2.12",
"@angular/platform-browser-dynamic": "^18.0.4",
"@angular/router": "^18.2.7",
"@angular/service-worker": "^14.2.12",
"rxjs": "~7.8.1",
"stitch-compute": "^2.1.1",
"tslib": "^2.6.3",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.13",
"@angular/cli": "^15.2.10",
"@angular/compiler-cli": "^14.2.12",
"@angular/localize": "^18.2.7",
"@prettier/plugin-xml": "^3.4.1",
"@types/jasmine": "~5.1.4",
"@types/node": "^20.14.0",
"@typescript-eslint/eslint-plugin": "8.8.1",
"@typescript-eslint/parser": "8.2.0",
"codelyzer": "^6.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "48.5.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "^5.2.1",
"jasmine-core": "~5.2.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"prettier": "^3.3.3",
"protractor": "~7.0.0",
"ts-node": "~10.9.2",
"tslint": "~6.1.0",
"typescript": "~4.8.4"
}
}