forked from Dartegnian/portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.51 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
{
"name": "dartegnians-portfolio",
"version": "1.6.0",
"scripts": {
"ng": "ng",
"prestart": "node src/replace-env.js",
"start": "bunx gulp compress && ng serve",
"prebuild": "bunx gulp compress",
"build": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"dev:ssr": "ng run dartegnians-portfolio:serve-ssr",
"serve:ssr": "node dist/dartegnians-portfolio/server/main.js",
"build:ssr": "ng build --configuration production && ng run dartegnians-portfolio:server",
"prerender": "node src/replace-env.js && ng run dartegnians-portfolio:prerender",
"vercel-build": "npm run build:ssr",
"scully-build": "ng build --configuration production && npx scully --noPrompt --project dartegnians-portfolio --scanRoutes",
"local": "ng serve --disable-host-check --host 0.0.0.0",
"local-gulp": "bunx gulp compress && ng serve --disable-host-check"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.13",
"@angular/common": "^18.1.4",
"@angular/compiler": "^18.1.4",
"@angular/core": "^18.1.4",
"@angular/forms": "^18.1.4",
"@angular/material": "^19.0.4",
"@angular/platform-browser": "^18.1.4",
"@angular/platform-browser-dynamic": "^18.1.4",
"@angular/platform-server": "^18.1.4",
"@angular/router": "^18.1.4",
"@angular/service-worker": "^18.1.4",
"@angular/ssr": "^18.1.4",
"@material/material-color-utilities": "^0.3.0",
"@ngx-translate/core": "^16.0.3",
"@ngx-translate/http-loader": "^16.0.0",
"bootstrap": "^5.3.3",
"colors": "^1.4.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"idb": "^8.0.0",
"jschristmas": "^0.0.10",
"lastfm": "^0.9.4",
"material": "^0.9.18",
"ngx-swinging-christmas-balls": "^1.0.5",
"ngx-translate": "^0.0.1-security",
"rxjs": "^7.8.1",
"tslib": "^2.6.3",
"zone.js": "^0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.4",
"@angular/cli": "^18.1.4",
"@angular/compiler-cli": "^18.1.4",
"@types/express": "^4.17.21",
"@types/jasmine": "^5.1.4",
"@types/node": "^20.17.9",
"dotenv-run": "^0.0.1",
"gulp": "^4.0.2",
"gulp-sharp-responsive": "^0.4.1",
"jasmine-core": "~5.2.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"typescript": "^5.5.4"
},
"trustedDependencies": [
"es5-ext"
]
}