-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 2.17 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
{
"name": "ballistica-web",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"clean": "rimraf ./dist",
"start": "ng serve",
"build": "ng build && npm run prerender",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"dev:ssr": "ng run ballistica-web:serve-ssr",
"serve:ssr": "node dist/ballistica-web/server/main.js",
"build:ssr": "ng build && ng run ballistica-web:server",
"prerender": "ng run ballistica-web:prerender",
"build:ci": "npm run clean && npm run build-deploy",
"build-deploy": "ng build --base-href /bombsquad-web/",
"host": "npx lite-server --baseDir=\"dist/ballistica-web/browser\"",
"firebase": "firebase deploy --only hosting"
},
"private": true,
"dependencies": {
"@angular/animations": "~17.3.8",
"@angular/cdk": "~17.3.8",
"@angular/common": "~17.3.8",
"@angular/compiler": "~17.3.8",
"@angular/core": "~17.3.8",
"@angular/flex-layout": "^15.0.0-beta.42",
"@angular/forms": "~17.3.8",
"@angular/localize": "~17.3.8",
"@angular/material": "~17.3.8",
"@angular/platform-browser": "~17.3.8",
"@angular/platform-browser-dynamic": "~17.3.8",
"@angular/platform-server": "~17.3.8",
"@angular/router": "~17.3.8",
"@angular/service-worker": "~17.3.8",
"@angular/ssr": "^17.3.7",
"@ng-bootstrap/ng-bootstrap": "^16.0.0",
"@popperjs/core": "^2.11.8",
"ace-builds": "^1.33.2",
"bootstrap": "^5.2.0",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"mock-browser": "^0.92.14",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "~17.3.7",
"@angular/cli": "^17.3.7",
"@angular/compiler-cli": "~17.3.8",
"@types/express": "^4.17.17",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.20.55",
"browser-sync": "^3.0.0",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"lite-server": "^2.6.1",
"prettier": "^3.2.5",
"typescript": "~5.4.5",
"url": "^0.11.0"
}
}