forked from eclipse-esmf/esmf-sdk-js-schematics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.28 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": "@esmf/semantic-ui-schematics",
"version": "",
"description": "Official ESMF schematic for the Angular CLI to leverage Aspect models for generating Angular components.",
"scripts": {
"build": "tsc -p tsconfig.json",
"build-watch": "tsc -p tsconfig.json --watch",
"prettier": "prettier --config .prettierrc --write './src/**/*{.ts,.js,.json}'",
"test": "jest --reporters default jest-stare",
"test:prettier": "prettier --config .prettierrc --list-different './src/**/*{.ts,.js,.json}'",
"test:coverage": "jest --coverage --reporters default jest-stare",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"keywords": [
"schematic"
],
"files": [
"src/**",
".prettierrc"
],
"author": "",
"license": "mpl-2.0",
"schematics": "./src/collection.json",
"dependencies": {
"@angular-devkit/core": "^17.2.2",
"@angular-devkit/schematics": "^17.2.2",
"@esmf/aspect-model-loader": "https://github.com/eclipse-esmf/esmf-sdk-js-aspect-model-loader/releases/download/v2.3.0/esmf-aspect-model-loader-2.3.0.tgz",
"@schematics/angular": "17.2.2",
"fs": "0.0.1-security",
"inquirer": "8.2.5",
"inquirer-fuzzy-path": "2.3.0",
"inquirer-prompt-suggest": "0.1.0",
"inquirer-search-list": "1.2.6",
"ora": "5.4.1",
"path": "^0.12.7",
"prettier": "2.8.8",
"rxjs": "7.x",
"typescript": "5.3.3"
},
"devDependencies": {
"@angular/cdk": "^17.2.1",
"@babel/core": "7.22.9",
"@babel/preset-env": "7.22.9",
"@babel/preset-typescript": "7.22.5",
"@types/inquirer": "^9.0.3",
"@types/inquirer-fuzzy-path": "2.3.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"eslint": "8.57.0",
"jest": "29.7.0",
"jest-stare": "2.5.1",
"locale-codes": "^1.3.1",
"ts-node": "10.9.2"
},
"peerDependencies": {
"@angular/animations": "17.x",
"@angular/common": "17.x",
"@angular/forms": "17.x",
"@angular/material": "17.x",
"@angular/platform-browser": "17.x",
"@angular/platform-browser-dynamic": "17.x",
"@ngneat/transloco": "6.x",
"ngx-i18n-combine": "1.x",
"rxjs": "7.x"
},
"ng-add": {
"save": "devDependencies"
}
}