-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.07 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
{
"name": "jr-trainformation",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "concurrently \"npm run start-client\" \"npm run start-server\"",
"start:prod": "ts-node --project tsconfig.server.json --transpile-only server/index.ts",
"start-client": "ng serve --proxy-config src/proxy.conf.json",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"start-server": "ts-node-dev --respawn --project tsconfig.server.json server/index.ts",
"cron": "ts-node --project tsconfig.server.json --transpile-only server/cron.ts"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.6",
"@angular/cdk": "^18.2.6",
"@angular/common": "^18.2.6",
"@angular/compiler": "^18.2.6",
"@angular/core": "^18.2.6",
"@angular/forms": "^18.2.6",
"@angular/material": "^18.2.6",
"@angular/platform-browser": "^18.2.6",
"@angular/platform-browser-dynamic": "^18.2.6",
"@angular/router": "^18.2.6",
"@google-cloud/firestore": "^7.10.0",
"dotenv": "^16.0.1",
"express": "^4.18.0",
"firebase-admin": "^12.5.0",
"node-cron": "^3.0.2",
"node-fetch": "^2.6.7",
"nodemailer": "^6.7.5",
"rxjs": "~7.5.0",
"ts-node-dev": "^2.0.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.7",
"@angular/cli": "^18.2.7",
"@angular/compiler-cli": "^18.2.6",
"@types/express": "^4.17.13",
"@types/jasmine": "~3.10.0",
"@types/jest": "^29.5.13",
"@types/node": "^12.20.52",
"@types/node-fetch": "^2.6.1",
"@types/nodemailer": "^6.4.4",
"concurrently": "^7.1.0",
"jasmine-core": "~4.0.0",
"jest": "^29.7.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",
"nodemon": "^2.0.15",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"typescript": "~5.4.5"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.24.0"
}
}