-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
112 lines (112 loc) · 4.02 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "ngx-fast-svg",
"version": "0.0.0",
"license": "MIT",
"engines": {
"node": "^18.0.0",
"npm": "9.5.0"
},
"scripts": {
"ng": "ng",
"nx": "nx",
"test:lib": "nx run ngx-fast-lib:test",
"start": "npm run serve",
"start:ssr": "npm run serve:ssr",
"serve": "nx serve ngx-fast-icon-demo",
"serve:prod": "npm run serve -- --configuration=production",
"serve:ssr": "nx serve-ssr ngx-fast-icon-demo",
"serve:ssr:prod": "npm run serve:ssr -- --configuration=production",
"build": "nx build ngx-fast-icon-demo",
"build-demo": "nx build ngx-fast-icon-demo",
"build:prod": "npm run build -- --configuration production",
"build:prod:stats": "npm run build -- --configuration production --stats-json",
"build-server": "nx build-server ngx-fast-icon-demo",
"build:prod:ssr": "npm run build:prod && npm run build-server",
"user-flow:collect": "npx @push-based/user-flow -p ./packages/ngx-fast-icon-demo/perf/.user-flowrc.json collect -v",
"update-bundle-state:readme": "npm run build:prod:stats && npx ts-node -P tools/tsconfig.tools.json ./tools/bundle-stats/index.ts update-bundle-stats --stats=./dist/packages/browser/ngx-fast-icon-demo/stats.json --target=./README.md",
"update-svg-size:readme": "npm run build:prod:stats && npx ts-node -P tools/tsconfig.tools.json ./tools/bundle-stats/index.ts update-svg-size --folder=./packages/ngx-fast-icon-demo/src/assets/svg-icons --target=./README.md"
},
"private": true,
"dependencies": {
"@angular/animations": "18.0.7",
"@angular/cdk": "18.0.6",
"@angular/common": "18.0.7",
"@angular/compiler": "18.0.7",
"@angular/core": "18.0.7",
"@angular/forms": "18.0.7",
"@angular/material": "18.0.6",
"@angular/platform-browser": "18.0.7",
"@angular/platform-browser-dynamic": "18.0.7",
"@angular/platform-server": "18.0.7",
"@angular/router": "18.0.7",
"@angular/ssr": "18.0.7",
"@ant-design/icons-angular": "^18.0.0",
"@fortawesome/angular-fontawesome": "^0.15.0",
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@ionic/angular": "^8.2.0",
"angular-svg-icon": "^18.0.0",
"express": "~4.18.2",
"rxjs": "^7.8.1",
"tslib": "^2.3.0",
"zone.js": "0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.0.7",
"@angular-devkit/core": "18.0.7",
"@angular-devkit/schematics": "18.0.7",
"@angular-eslint/eslint-plugin": "18.1.0",
"@angular-eslint/eslint-plugin-template": "18.1.0",
"@angular-eslint/template-parser": "18.1.0",
"@angular/cli": "~18.0.0",
"@angular/compiler-cli": "18.0.7",
"@angular/language-service": "18.0.7",
"@jscutlery/semver": "^5.3.0",
"@nx/angular": "19.4.2",
"@nx/cypress": "19.4.2",
"@nx/devkit": "19.4.2",
"@nx/eslint": "19.4.2",
"@nx/jest": "19.4.2",
"@nx/js": "19.4.2",
"@nx/playwright": "19.4.2",
"@nx/workspace": "19.4.2",
"@playwright/test": "^1.36.0",
"@push-based/user-flow": "^0.19.2",
"@schematics/angular": "18.0.7",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.7",
"@types/compression": "^1.7.2",
"@types/express": "4.17.14",
"@types/jest": "29.4.4",
"@types/node": "^18.16.9",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"@typescript-eslint/utils": "^8.0.0-alpha.28",
"compression": "^1.7.4",
"cypress": "13.13.0",
"domino": "^2.1.6",
"eslint": "8.57.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-cypress": "2.13.4",
"eslint-plugin-playwright": "^0.15.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-preset-angular": "14.1.1",
"jsonc-eslint-parser": "^2.1.0",
"ng-packagr": "18.0.0",
"nx": "19.4.2",
"postcss-preset-env": "~7.5.0",
"prettier": "2.6.2",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.4.5"
},
"overrides": {
"@push-based/user-flow": {
"rxjs": "^7.5.7"
}
},
"workspaces": [
"packages/**"
]
}