-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.17 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.17 KB
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
{
"name": "croqueta-clicker",
"version": "1.4.0",
"description": "Croqueta Clicker, un juego incremental inspirado en Cookie Clicker, desarrollado por Pablo, Victor y Roberto.",
"author": {
"name": "Pablo Casado, Roberto Cichón, Víctor Rodríguez",
"url": "https://croquetaclicker.whiteroot.studio"
},
"contributors": [
{
"name": "Pavloh",
"github": "https://github.com/ImPavloh"
},
{
"name": "Roberto Cichón",
"github": "https://github.com/RobertoCichon"
},
{
"name": "Víctor RG",
"github": "https://github.com/VictorRG15"
}
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"serve:prod": "pnpm build && npx http-server dist/croqueta-clicker/browser -p 8080 -c-1"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"dependencies": {
"@angular/cdk": "^21.0.0",
"@angular/common": "^21.0.0",
"@angular/compiler": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/forms": "^21.0.0",
"@angular/platform-browser": "^21.0.0",
"@angular/router": "^21.0.0",
"@angular/service-worker": "^21.0.0",
"@jsverse/transloco": "^8.2.0",
"@supabase/supabase-js": "^2.33.0",
"@tailwindcss/postcss": "^4.1.16",
"@types/crypto-js": "^4.2.2",
"autoprefixer": "^10.4.21",
"break_infinity.js": "^2.2.0",
"crypto-js": "^4.2.0",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.8.4",
"pixi.js": "^8",
"postcss": "^8.5.6",
"rxjs": "~7.8.0",
"tailwindcss": "^4.1.16",
"tslib": "^2.3.0"
},
"devDependencies": {
"@analogjs/vitest-angular": "^2.2.3",
"@angular/build": "^21.0.0",
"@angular/cli": "^21.0.0",
"@angular/compiler-cli": "^21.0.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.0.18",
"baseline-browser-mapping": "^2.9.19",
"jsdom": "^26.0.0",
"typescript": "~5.9.2",
"vitest": "^4.0.18"
},
"engines": {
"node": "20.x"
}
}