-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
103 lines (103 loc) · 3.63 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
100
101
102
103
{
"name": "machete-ui",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --host 0.0.0.0 --ssl true --ssl-cert ./ssl/server.crt --ssl-key ./ssl/server.key",
"start-test": "ng serve --host 0.0.0.0 --configuration test",
"start-prod": "ng serve --host 0.0.0.0 --configuration production",
"dev": "ng serve --host 0.0.0.0 --configuration local-dev",
"analyze-bundles": "ng build --configuration local-bundle-analyze",
"start-local-dev-ssl": "ng serve --host 0.0.0.0 --ssl true --ssl-cert ./ssl/server.crt --ssl-key ./ssl/server.key --configuration local-dev",
"build": "ng build",
"build-test": "ng build --configuration test",
"build-prod": "ng build --configuration production",
"build-local-dev": "ng build --configuration local-dev",
"source-map-explorer": "source-map-explorer dist/**/*.js",
"test": "ng test",
"test-headless": "ng test --watch=false --browsers=ChromeHeadless",
"watch-headless": "ng test --watch=true --browsers=ChromeHeadless",
"lint": "ng lint",
"cypress:open": "cypress open",
"cypress:run": "cypress run --browser=chrome"
},
"private": true,
"dependencies": {
"@angular/animations": "^12.2.16",
"@angular/cdk": "^12.2.12",
"@angular/common": "^12.2.16",
"@angular/compiler": "^12.2.16",
"@angular/core": "^12.2.16",
"@angular/forms": "^12.2.16",
"@angular/platform-browser": "^12.2.6",
"@angular/platform-browser-dynamic": "^12.2.16",
"@angular/platform-server": "^12.2.16",
"@angular/router": "^12.2.16",
"@ctrl/ngx-codemirror": "^5.0.0",
"babel-polyfill": "^6.26.0",
"chart.js": "^3.5.1",
"codemirror": "^5.62.3",
"content-disposition": "^0.5.2",
"dot-prop": "^5.2.0",
"enhanced-resolve": "^4.5.0",
"file-saver": "^1.3.8",
"jquery": "^3.6.0",
"luxon": "^2.0.2",
"machete-client": "1.15.92",
"nanoscroller": "0.8.7",
"ngx-print": "^1.2.1",
"npm": "^9.1.2",
"path": "^0.12.7",
"paypal-checkout": "^4.0.328",
"primeflex": "^2.0.0",
"primeicons": "^4.1.0",
"primeng": "^12.0.0",
"rxjs": "^6.6.7",
"tslib": "1.10.0",
"web-animations-js": "^2.3.2",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^12.2.18",
"@angular-eslint/builder": "12.5.0",
"@angular-eslint/eslint-plugin": "12.5.0",
"@angular-eslint/eslint-plugin-template": "12.5.0",
"@angular-eslint/schematics": "12.5.0",
"@angular-eslint/template-parser": "12.5.0",
"@angular/cli": "^12.2.16",
"@angular/compiler-cli": "^12.2.16",
"@angular/language-service": "^12.2.16",
"@cypress/schematic": "^1.5.1",
"@types/content-disposition": "^0.5.2",
"@types/faker": "^5.5.9",
"@types/file-saver": "^1.3.1",
"@types/jasmine": "~3.6.0",
"@types/luxon": "^2.0.4",
"@types/node": "^14.17.4",
"@typescript-eslint/eslint-plugin": "4.3.0",
"@typescript-eslint/parser": "4.3.0",
"cypress": "^9.1.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"faker": "^5.5.3",
"jasmine-core": "~3.8.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-spec-reporter": "^0.0.32",
"prettier": "^2.5.0",
"puppeteer": "13.3.2",
"source-map-explorer": "^2.5.2",
"ts-node": "^7.0.1",
"typescript": "4.3.5",
"webpack": "^5.69.1",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
}
}