-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.55 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
{
"name": "@onega-ui/root",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=18.13.0",
"yarn": ">=1.21.1 <2",
"npm": "Please use yarn instead of NPM to install dependencies"
},
"scripts": {
"ng": "ng",
"start": "ng serve website",
"build": "ng build website",
"watch": "ng build website --watch --configuration development",
"lint": "ng lint --fix",
"webfont": "node node_modules/webfont/dist/cli.js",
"icons-css": "webfont 'projects/icons/svg/*.svg' --font-name=onega-ui --dest=dist/icons --template-class-name=ong --descent=60 --dest-create --template='projects/icons/icons.css'",
"icons-tmpl": "webfont 'projects/icons/svg/*.svg' --font-name=onega-ui --dest=dist/icons --template-class-name=ong --descent=60 --dest-create --template='projects/icons/icons.ts'",
"icons": "yarn icons-css && yarn icons-tmpl",
"styles:scss": "sass projects/styles/src/index.scss dist/styles/styles.scss --no-source-map",
"styles:css": "sass projects/styles/src/index.scss dist/styles/styles.css --style compressed --no-source-map",
"styles:themes": "sass projects/styles/src/themes:dist/styles/themes --style compressed --no-source-map",
"styles": "yarn run styles:scss && yarn run styles:css && yarn run styles:themes",
"apigen": "tsc --project apigen/tsconfig.json && node apigen/index.mjs"
},
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~19.0.0",
"@angular-eslint/builder": "~19.0.0",
"@angular-eslint/eslint-plugin": "~19.0.0",
"@angular-eslint/eslint-plugin-template": "~19.0.0",
"@angular-eslint/schematics": "~19.0.0",
"@angular-eslint/template-parser": "~19.0.0",
"@angular/cli": "~19.0.0",
"@angular/compiler-cli": "~19.0.0",
"@types/node": "~20.14.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"@typescript-eslint/types": "^7.0.0",
"@typescript-eslint/utils": "^7.0.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.0.0",
"fs.notify": "^0.0.4",
"ng-packagr": "~19.0.0",
"typescript": "~5.6.2",
"vite": "^5.0.0",
"webfont": "^11.2.26"
}
}