-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.12 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "opp",
"version": "2.0.0",
"license": "MIT",
"engines": {
"node": ">=18.18.0"
},
"scripts": {
"ng": "ng",
"ngv": "ng --version",
"start": "ng serve",
"start:with-server": "ng serve --proxy-config proxy.conf.json",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"build:prod": "node make_version.js && ng build --configuration production --base-href /opp --deploy-url opp/",
"build:demo": "node make_version.js && ng build --configuration demo --base-href /demo --deploy-url demo/",
"build:test": "ng build --configuration local-prod",
"build:stats": "ng build --configuration production,local-stats",
"server:dist": "http-server ./dist/web/ -S -C cert/localhost.crt -K cert/localhost.key -P http://localhost:5000",
"source-map-explorer": "source-map-explorer dist/web/*es2018.js",
"bundle-report": "webpack-bundle-analyzer dist/web/stats.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.8",
"@angular/cdk": "^18.2.8",
"@angular/common": "^18.2.8",
"@angular/compiler": "^18.2.8",
"@angular/core": "^18.2.8",
"@angular/forms": "^18.2.8",
"@angular/material": "^18.2.8",
"@angular/platform-browser": "^18.2.8",
"@angular/platform-browser-dynamic": "^18.2.8",
"@angular/router": "^18.2.8",
"@angular/service-worker": "^18.2.8",
"@auth0/angular-jwt": "^5.1.2",
"@ngneat/elf": "^2.3.2",
"@ngneat/elf-cli-ng": "^1.0.0",
"@ngneat/elf-entities": "^4.5.0",
"@ngspot/expandable-input": "^3.0.2",
"@ngspot/ngx-errors": "^4.0.0",
"@ngspot/ngx-errors-material": "^4.0.1",
"core-js": "^3.32.0",
"ng-let": "^17.0.4",
"ngx-clipboard": "^16.0.0",
"papaparse": "^5.4.1",
"rxjs": "^7.8.1",
"tslib": "^2.6.1",
"zone.js": "^0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.9",
"@angular-eslint/builder": "^18.0.0",
"@angular-eslint/eslint-plugin": "^18.0.0",
"@angular-eslint/eslint-plugin-template": "^18.0.0",
"@angular-eslint/template-parser": "^18.0.0",
"@angular/cli": "^18.2.9",
"@angular/compiler-cli": "^18.2.8",
"@angular/language-service": "^18.2.8",
"@types/jasmine": "^5.1.0",
"@types/node": "^20.4.8",
"@types/papaparse": "^5.3.7",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "^8.57.0",
"jasmine-core": "^5.2.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^18.2.1",
"pre-commit": "^1.2.2",
"source-map-explorer": "^2.5.2",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.5.2",
"webpack-bundle-analyzer": "^4.9.0"
},
"resolutions": {
"@angular/animations": "^18.2.8"
},
"pre-commit": [
"lint",
"build:test"
],
"elf": {
"cli": {
"repoTemplate": "class",
"idKey": "id",
"repoLibrary": "",
"plugins": [
"@ngneat/elf-cli-ng"
]
}
}
}