-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.89 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
{
"name": "cta-tracker",
"version": "1.0.0",
"engines": {
"node": "18.10.0",
"npm": "8.19.2"
},
"scripts": {
"ng": "ng",
"start": "node server.js & ng serve --watch",
"start-prod": "node server.js",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"heroku-postbuild": "ng build --configuration production"
},
"private": true,
"dependencies": {
"@angular-devkit/build-angular": "^14.2.12",
"@angular/animations": "^14.3.0",
"@angular/cdk": "^14.2.7",
"@angular/cli": "^14.2.12",
"@angular/common": "^14.3.0",
"@angular/compiler": "^14.3.0",
"@angular/compiler-cli": "^14.3.0",
"@angular/core": "^14.3.0",
"@angular/forms": "^14.3.0",
"@angular/material": "^14.2.7",
"@angular/platform-browser": "^14.3.0",
"@angular/platform-browser-dynamic": "^14.3.0",
"@angular/router": "^14.3.0",
"@types/node": "^20.4.5",
"axios": "^0.27.2",
"body-parser": "^1.19.0",
"bootstrap": "^4.4.1",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-rate-limit": "^6.8.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"request": "^2.88.2",
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"typescript": "~4.6.4",
"zone.js": "~0.11.5"
},
"devDependencies": {
"@angular/language-service": "^14.3.0",
"@types/jasmine": "~3.8.0",
"@types/jasminewd2": "~2.0.3",
"@types/jquery": "^3.5.14",
"@types/lodash": "^4.14.182",
"enhanced-resolve": "^3.3.0",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"schematics-scss-migrate": "^1.3.14",
"ts-node": "~8.3.0",
"tslint": "~5.18.0",
"typescript": "~4.6.4"
}
}