-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.85 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.85 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "occultashield-front",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"dev": "concurrently -k -p \"[{name}]\" -n \"Angular,AuthSrv\" -c \"cyan.bold,green.bold\" \"ng serve\" \"bun --watch src/server.ts\"",
"global": "ng serve && bun run start:ssr",
"start": "ng serve",
"start:ssr": "bun run build && bun run serve:ssr",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"serve:ssr": "bun dist/Occultashield_front/server/server.mjs",
"serve:ssr:node": "node dist/Occultashield_front/server/server.mjs",
"db:schema": "echo 'Run: surreal import --conn http://localhost:8000 --user root --pass root --ns occultashield --db main server/schema.surql'"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"imports": {
"#components/*": [
"./src/app/components/*.ts",
"./src/app/components/*"
],
"#pages/*": [
"./src/app/pages/*.ts",
"./src/app/pages/*"
],
"#interface/*": [
"./src/app/interface/*.ts",
"./src/app/interface/*"
],
"#services/*": [
"./src/app/services/*.ts",
"./src/app/services/*"
],
"#environments/*": [
"./src/environments/*.ts",
"./src/environments/*"
],
"#interceptors/*": [
"./src/app/interceptors/*.ts",
"./src/app/interceptors/*"
],
"#lib/*": [
"./src/app/lib/*.ts",
"./src/app/lib/*"
],
"#server/*": [
"./server/lib/*.ts",
"./server/lib/*"
],
"#guards/*": [
"./src/app/guards/*.ts",
"./src/app/guards/*"
]
},
"packageManager": "bun@1.3.1",
"dependencies": {
"@angular/common": "^21.1.0",
"@angular/compiler": "^21.1.0",
"@angular/core": "^21.1.0",
"@angular/forms": "^21.1.0",
"@angular/platform-browser": "^21.1.0",
"@angular/platform-server": "^21.1.0",
"@angular/router": "^21.1.0",
"@angular/ssr": "^21.1.0",
"@types/nodemailer": "^7.0.5",
"better-auth": "^1.4.13",
"concurrently": "^9.2.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"http-proxy-middleware": "^3.0.5",
"nodemailer": "^7.0.12",
"rxjs": "~7.8.2",
"surreal-better-auth": "^1.0.0",
"surrealdb": "^1.3.2",
"tslib": "^2.8.1",
"winston": "^3.19.0"
},
"devDependencies": {
"@angular/build": "^21.1.0",
"@angular/cli": "^21.1.0",
"@angular/compiler-cli": "^21.1.0",
"@tailwindcss/postcss": "^4.1.18",
"@types/bun": "^1.3.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^20.19.29",
"jsdom": "^27.4.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"typescript": "~5.9.3",
"vitest": "^4.0.17"
}
}