-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.97 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.97 KB
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
{
"name": "workspace",
"workspaces": [
"projects/*"
],
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"l": "lerna",
"start": "ng serve",
"build": "ng build",
"build:ci": "lerna run build --ci",
"test": "jest",
"test:ci": "lerna run test:ci --ci",
"lint": "ng lint",
"lint:ci": "lerna run lint:ci --ci",
"deploy:ci": "lerna publish -y --conventional-commits --create-release github --loglevel verbose --no-private"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.3.0",
"@angular/cdk": "17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/forms": "^17.3.0",
"@angular/material": "17.3.0",
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "^17.3.0",
"@monaco-editor/loader": "^1.3.2",
"monaco-editor": "^0.36.1",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.0",
"@angular-eslint/builder": "17.2.1",
"@angular-eslint/eslint-plugin": "17.2.1",
"@angular-eslint/eslint-plugin-template": "17.2.1",
"@angular-eslint/schematics": "17.2.1",
"@angular-eslint/template-parser": "17.2.1",
"@angular/cli": "^17.3.0",
"@angular/compiler-cli": "^17.3.0",
"@types/jest": "^29.4.4",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"jest": "^29.4.3",
"jest-environment-jsdom": "^29.4.3",
"jest-junit": "^16.0.0",
"jest-preset-angular": "^13.1.1",
"lerna": "^8.0.2",
"ng-packagr": "^17.2.1",
"ts-jest": "^29.1.0",
"typescript": "~5.3.3",
"utility-types": "^3.11.0"
},
"contributors": [
"Davide Cavaliere <cavaliere.davide@gmail.com>",
"Gianluca Paris <gianluca.paris@outlook.com>",
"Luis Trinidad <ltrinidad@datakitchen.io>"
]
}