forked from fabnumdef/chatbot-front
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 3.28 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
{
"name": "chatbot-front",
"version": "1.9.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:local": "ng serve --proxy-config proxy.local.conf.json",
"start:dev": "ng serve --proxy-config proxy.dev.conf.json",
"start:dev webchat": "ng serve --proxy-config proxy.dev.conf.json --project=webchat",
"start:local webchat": "ng serve --proxy-config proxy.local.conf.json --project=webchat",
"start:test": "ng serve --proxy-config proxy.test.conf.json",
"build": "ng build",
"build:prod": "uglifyjs ./src/assets/scripts/embbed-chatbot.js -m -o ./src/assets/scripts/embbed-chatbot.min.js && ng build webchat --configuration production --base-href /chatbot/ --output-hashing=all && ng build --configuration production --base-href /backoffice/ --output-hashing=all",
"test": "ng test",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"e2e": "ng e2e",
"cypress:local": "concurrently \"npm run start:local\" \"cypress open\"",
"cypress:dev": "concurrently \"npm run start:dev\" \"cypress open\"",
"clean": "rimraf ./dist",
"postinstall": "ngcc"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.1.0",
"@angular/cdk": "^15.0.4",
"@angular/common": "^15.1.0",
"@angular/compiler": "^15.1.0",
"@angular/core": "^15.1.0",
"@angular/elements": "^15.1.0",
"@angular/forms": "^15.1.0",
"@angular/material": "^15.0.4",
"@angular/material-moment-adapter": "^15.0.4",
"@angular/platform-browser": "^15.1.0",
"@angular/platform-browser-dynamic": "^15.1.0",
"@angular/router": "^15.1.0",
"@angular/service-worker": "^15.1.0",
"@swimlane/ngx-charts": "^20.1.2",
"classlist.js": "^1.1.20150312",
"core-js": "^3.8.2",
"dom-to-image": "^2.6.0",
"file-saver": "^2.0.2",
"humanize-duration": "^3.25.1",
"moment": "^2.25.3",
"ngx-color-picker": "^11.0.0",
"ngx-highlightjs": "^4.1.1",
"ngx-mat-select-search": "^6.0.0",
"ngx-panzoom": "^15.0.0",
"ngx-toastr": "^16.0.2",
"rxjs": "~6.6.7",
"socket.io-client": "^4.1.2",
"tslib": "^2.3.0",
"uglify-js-es6": "^2.8.9",
"web-animations-js": "^2.3.2",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.0",
"@angular/cli": "^15.1.0",
"@angular/compiler-cli": "^15.1.0",
"@angular/language-service": "^15.1.0",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"codelyzer": "^6.0.2",
"concurrently": "^5.3.0",
"cypress": "^7.7.0",
"cypress-file-upload": "^5.0.8",
"cypress-intellij-reporter": "^0.0.6",
"eslint": "^8.54.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"jasmine-core": "~4.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "^15.1.0",
"prettier": "^3.1.0",
"protractor": "~7.0.0",
"ts-node": "~7.0.0",
"typescript": "~4.9.4"
}
}