-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 3.39 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
{
"name": "@ng-supabase/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"nx": "nx",
"ng": "nx",
"build": "nx build",
"build:demo": "nx build demo --configuration=production",
"build:ci": "nx run-many -t build --parallel=5 --configuration=production && npm run script -- scripts/update-lib-packages.ts",
"ci": "nx run-many -t build lint test --parallel=5 --configuration=production && lint:style",
"start": "nx serve",
"serve": "nx serve",
"script": "ts-node -r tsconfig-paths/register --project scripts/tsconfig.json",
"stylelint": "stylelint",
"start:demo": "nx serve --project=demo",
"lint": "nx lint",
"lint:ci": "npm run lint:all",
"lint:all": "nx run-many -t lint && stylelint -- **/*.scss",
"lint:style": "stylelint -- **/*.scss",
"lint:style:fix": "stylelint -- **/*.scss --fix",
"test": "nx test",
"test:ci": "npm run test:all --codeCoverage",
"test:all": "nx run-many -t test",
"test:affected": "nx affected -t lint --base=main --head=HEAD --parallel=5 && stylelint -- **/*.scss --fix",
"update": "nx migrate latest && nx migrate --run-migrations"
},
"private": true,
"dependencies": {
"@angular/animations": "18.2.6",
"@angular/common": "18.2.6",
"@angular/compiler": "18.2.6",
"@angular/core": "18.2.6",
"@angular/forms": "18.2.6",
"@angular/platform-browser": "18.2.6",
"@angular/platform-browser-dynamic": "18.2.6",
"@angular/platform-server": "18.2.6",
"@angular/router": "18.2.6",
"@angular/ssr": "18.2.6",
"@nx/angular": "19.8.1",
"@primeng/themes": "^18.0.0",
"@supabase/supabase-js": "^2.45.4",
"express": "~4.18.2",
"primeicons": ">=7.0.0",
"primeng": "^18.0.0",
"rxjs": ">=7.8.0",
"stylelint": "^16.2.1",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.1.0",
"tailwindcss-primeui": "^0.3.4",
"tslib": "^2.3.0",
"zone.js": "~0.14.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.6",
"@angular-devkit/core": "18.2.6",
"@angular-devkit/schematics": "18.2.6",
"@angular-eslint/eslint-plugin": "18.3.1",
"@angular-eslint/eslint-plugin-template": "18.3.1",
"@angular-eslint/template-parser": "18.3.1",
"@angular/cli": "~18.2.0",
"@angular/compiler-cli": "18.2.6",
"@angular/language-service": "18.2.6",
"@nx/eslint": "19.8.1",
"@nx/eslint-plugin": "19.8.1",
"@nx/jest": "19.8.1",
"@nx/js": "19.8.1",
"@nx/workspace": "19.8.1",
"@schematics/angular": "18.2.6",
"@swc-node/register": "1.9.2",
"@swc/core": "1.5.7",
"@types/express": "4.17.14",
"@types/jest": "29.5.13",
"@types/node": "^18.16.9",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@typescript-eslint/utils": "^7.16.0",
"autoprefixer": "^10.4.20",
"eslint": "8.57.1",
"eslint-config-prettier": "^9.0.0",
"glob": "^10.3.10",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-preset-angular": "14.1.1",
"jsonc-eslint-parser": "^2.1.0",
"ng-packagr": "18.2.1",
"nx": "19.8.1",
"postcss": "^8.4.47",
"postcss-import": "~14.1.0",
"postcss-preset-env": "~7.5.0",
"postcss-url": "~10.1.3",
"prettier": "^2.6.2",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.1.0",
"ts-node": "10.9.1",
"typescript": "5.5.4"
}
}