-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.27 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.27 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
{
"name": "dev-portfolio",
"version": "0.0.48",
"scripts": {
"ng": "ng",
"start": "node --max-old-space-size=8192 ./node_modules/@angular/cli/bin/ng serve",
"prebuild": "node scripts/bump-version.js && node scripts/build-commit.js && node scripts/generate-version.js",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:once": "vitest run",
"bDev": "ng build --configuration development --watch",
"rebDev": "npm run clean && npm run bDev",
"bProd": "npm run build -- --configuration production",
"bProdNOprebuild": "ng build --configuration production",
"rebProd": "npm run clean && npm run bProd",
"rebProdNOprebuild": "npm run clean && npm run bProdNOprebuild",
"postbuild": "npm run http",
"clean": "rm -rf dist .angular/cache",
"cleanF": "rm -rf dist .angular node_modules && npm install",
"serve:prod": "ng serve --configuration production",
"httpC": "http-server dist/browser -p 4200 -S -C C:/Certbot/live/area36000.com/fullchain.pem -K C:/Certbot/live/area36000.com/privkey.pem -c-1",
"http": "http-server dist/browser -p 4200 -c-1",
"deploy": "npm run test:once && npm run rebProd"
},
"overrides": {
"hono": "^4.11.7",
"tar": "^7.5.7"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"packageManager": "npm@10.9.0",
"dependencies": {
"@angular/common": "^21.1.4",
"@angular/compiler": "^21.1.4",
"@angular/core": "^21.1.4",
"@angular/forms": "^21.1.4",
"@angular/platform-browser": "^21.1.4",
"@angular/router": "^21.1.4",
"@angular/service-worker": "^21.1.0",
"@angular/youtube-player": "^21.1.4",
"@sweetalert2/ngx-sweetalert2": "^14.1.3",
"rxjs": "~7.8.0",
"sweetalert2": "^11.26.17",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "^21.1.1",
"@angular/cli": "^21.1.1",
"@angular/compiler-cli": "^21.1.4",
"@tailwindcss/postcss": "^4.1.12",
"http-server": "^14.1.1",
"jsdom": "^27.1.0",
"postcss": "^8.5.3",
"tailwindcss": "^4.1.12",
"typescript": "~5.9.2",
"vitest": "^4.0.8"
}
}