-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.77 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.77 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
{
"name": "trader",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --hmr --proxy-config proxy.conf.js",
"build": "ng build --localize --configuration production",
"test": "ng test --browsers ChromeHeadless --watch=false --code-coverage=true",
"test-chromium": "ng test --browsers ChromiumHeadless --watch=false --code-coverage=true",
"test-local": "ng test --browsers Chromium --watch=true",
"lint": "ng lint",
"e2e": "ng e2e",
"prebuild": "rimraf ./dist && mkdirp ./dist",
"postbuild": "npm run deploy",
"predeploy": "rimraf ../../main/resources/static/*",
"deploy": "cpy 'base/*' dist/testproject/browser/ && cpy 'dist/testproject/browser/**' ../../../backend/src/main/resources/static/",
"extract-i18n": "ng extract-i18n --format=json",
"prettier": "npx prettier --write 'src/**/*.{ts,html,scss,json}'"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.0.3",
"@angular/cdk": "^21.0.2",
"@angular/common": "^21.0.3",
"@angular/compiler": "^21.0.3",
"@angular/core": "^21.2.4",
"@angular/forms": "^21.0.3",
"@angular/localize": "^21.0.3",
"@angular/material": "^21.0.2",
"@angular/material-luxon-adapter": "^21.0.2",
"@angular/platform-browser": "^21.0.3",
"@angular/platform-browser-dynamic": "^21.0.3",
"@angular/router": "^21.0.3",
"@types/luxon": "^2.0.0",
"luxon": "^3.7.2",
"material-icons": "^1.11.11",
"ngx-simple-charts": "^21.0.0",
"rxjs": "^7.4.0",
"tslib": "^2.3.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.0.2",
"@angular/cli": "^21.1.4",
"@angular/compiler-cli": "^21.0.3",
"@angular/language-service": "^21.0.3",
"@types/jasmine": "~3.10.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^18.0.0",
"cpy-cli": "^4.2.0",
"jasmine-core": "~4.0.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-junit-reporter": "~2.0.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"ts-node": "~10.4.0",
"typescript": "~5.9.3",
"rimraf": "^5.0.2",
"prettier": "^3.0.0",
"webpack-bundle-analyzer": "^4.5.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.0.0",
"@angular-eslint/builder": "^21.0.1",
"@angular-eslint/eslint-plugin": "^21.0.1",
"@angular-eslint/eslint-plugin-template": "^21.0.1",
"@angular-eslint/schematics": "^21.0.1",
"@angular-eslint/template-parser": "^21.0.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1"
}
}