-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.43 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
{
"name": "foodcal",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"lint": "ng lint",
"analyze-bundle-size": "ng build --stats-json && webpack-bundle-analyzer ./dist/Foodcal/stats.json",
"format": "prettier --write \"**/*.{ts,js,html,json,scss}\"",
"generate-supabase-types": "supabase gen types typescript --local --schema 'public' > src/app/database.types.ts"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.6",
"@angular/cdk": "^19.0.5",
"@angular/common": "^19.0.6",
"@angular/compiler": "^19.0.6",
"@angular/core": "^19.0.6",
"@angular/forms": "^19.0.6",
"@angular/localize": "^19.0.6",
"@angular/platform-browser": "^19.0.6",
"@angular/platform-browser-dynamic": "^19.0.6",
"@angular/router": "^19.0.6",
"@ngxs/devtools-plugin": "^19.0.0",
"@ngxs/storage-plugin": "^19.0.0",
"@ngxs/store": "^19.0.0",
"@supabase/supabase-js": "^2.47.12",
"@webcomponents/custom-elements": "^1.6.0",
"@webcomponents/webcomponentsjs": "^2.8.0",
"date-fns": "^4.1.0",
"lit-element": "^4.1.1",
"ng-zorro-antd": "^19.0.2",
"ramda": "^0.30.1",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-eslint/builder": "19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "19.0.2",
"@angular-eslint/template-parser": "19.0.2",
"@angular/build": "^19.0.7",
"@angular/cli": "^19.0.7",
"@angular/compiler-cli": "^19.0.6",
"@angular/language-service": "^19.0.6",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"less": "^4.2.1",
"prettier": "^3.4.2",
"ts-node": "~10.9.2",
"typescript": "^5.5.1",
"webpack-bundle-analyzer": "^4.10.2"
},
"overrides": {
"@supabase/supabase-js": {
"@supabase/auth-js": "2.61.0"
}
}
}