-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 3.3 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 3.3 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
71
72
73
74
75
76
77
78
79
80
{
"name": "logusbrainng-lib-ws",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"test": "ng test",
"start": "ng serve --configuration development",
"start:dev": "ng serve --configuration=development",
"start:prod": "ng serve --configuration=production",
"build": "ng build",
"build:dev": "ng build --configuration development",
"build:prod": "ng build --configuration production",
"clean:dist": "rimraf dist/ || exit 0",
"postbuild:primeng-core": "node scripts/fix-exports.js",
"force-clean": "taskkill /F /IM node.exe && npm run clean:dist",
"build:dev:primeng-core": "ng build primeng-core --configuration development",
"build:dev:primeng-utils": "ng build primeng-utils --configuration development",
"build:prod:primeng-core": "ng build primeng-core --configuration production",
"build:prod:primeng-utils": "ng build primeng-utils --configuration production",
"watch": "ng build --watch --configuration development",
"watch:primeng-core": "ng build primeng-core --watch",
"watch:primeng-utils": "ng build primeng-utils --watch",
"build:primeng-core": "ng build primeng-core",
"build:primeng-utils": "ng build primeng-utils",
"prepare:dev:primeng-core": "npm run clean:dist && ng build primeng-core --configuration=development",
"prepare:prod:primeng-core": "npm run clean:dist && ng build primeng-core --configuration=production",
"publish:primeng-core": "npm run clean:dist && ng build primeng-core --configuration=production && cd dist/primeng-core && npm publish --access public",
"set:dev:unix": "NODE_ENV=development node scripts/set-tsconfig.js",
"set:prod:unix": "NODE_ENV=production node scripts/set-tsconfig.js",
"set:dev": "cross-env NODE_ENV=development node scripts/set-tsconfig.js",
"set:prod": "cross-env NODE_ENV=production node scripts/set-tsconfig.js"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.0",
"@angular/cdk": "^16.2.14",
"@angular/common": "^16.2.0",
"@angular/compiler": "^16.2.0",
"@angular/core": "^16.2.0",
"@angular/forms": "^16.2.12",
"@angular/platform-browser": "^16.2.0",
"@angular/platform-browser-dynamic": "^16.2.0",
"@angular/router": "^16.2.0",
"@auth0/angular-jwt": "^5.2.0",
"@fullcalendar/angular": "^6.1.17",
"@fullcalendar/core": "^6.1.17",
"@fullcalendar/daygrid": "^6.1.17",
"@fullcalendar/interaction": "^6.1.17",
"@fullcalendar/timegrid": "^6.1.17",
"@rxweb/reactive-form-validators": "^13.0.1",
"crypto-js": "^4.2.0",
"ngx-extended-pdf-viewer": "^18.1.15",
"ngx-spinner": "^16.0.2",
"primeflex": "^3.3.1",
"primeicons": "6.0.1",
"primeng": "16.0.2",
"rxjs": "~7.8.0",
"sweetalert2": "^11.18.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.16",
"@angular/cli": "^16.2.16",
"@angular/compiler-cli": "^16.2.0",
"@types/crypto-js": "^4.2.2",
"@types/jasmine": "~4.3.0",
"cross-env": "^7.0.3",
"jasmine-core": "~4.6.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"madge": "^8.0.0",
"ng-packagr": "^16.2.3",
"rimraf": "^5.0.0",
"typescript": "~5.1.3"
}
}