-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
85 lines (85 loc) · 2.69 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
{
"name": "nodeplotlib",
"version": "1.1.3",
"license": "MIT",
"scripts": {
"ng": "nx",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2020 browser module main",
"format:write": "nx format:write",
"build": "nx build",
"build:prod": "nx run web:build && nx run nodeplotlib:build && ts-node ./tools/util/copy-files.ts",
"demo": "node ./tools/demo/candlestick.js"
},
"private": true,
"dependencies": {
"@angular/animations": "14.1.1",
"@angular/cdk": "14.1.1",
"@angular/common": "14.1.1",
"@angular/compiler": "14.1.1",
"@angular/core": "14.1.1",
"@angular/forms": "14.1.1",
"@angular/material": "14.1.1",
"@angular/platform-browser": "14.1.1",
"@angular/platform-browser-dynamic": "14.1.1",
"@angular/router": "14.1.1",
"@nestjs/common": "9.0.8",
"@nestjs/core": "9.0.8",
"@nestjs/microservices": "9.0.8",
"@nestjs/platform-express": "9.0.8",
"@nestjs/platform-socket.io": "9.0.8",
"@nestjs/serve-static": "3.0.0",
"@nestjs/websockets": "9.0.8",
"@ngrx/effects": "~14.0.1",
"@ngrx/entity": "~14.0.1",
"@ngrx/store": "~14.0.1",
"@nrwl/angular": "14.5.4",
"@types/plotly.js": "^1.54.17",
"express": "^4.17.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.4.0",
"socket.io-client": "^4.4.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.1.1",
"@angular-eslint/eslint-plugin": "~14.0.0",
"@angular-eslint/eslint-plugin-template": "~14.0.0",
"@angular-eslint/template-parser": "~14.0.0",
"@angular/cli": "~14.1.0",
"@angular/compiler-cli": "14.1.1",
"@angular/language-service": "14.1.1",
"@nestjs/schematics": "9.0.1",
"@nestjs/testing": "9.0.8",
"@ngrx/eslint-plugin": "^14.0.1",
"@nrwl/cli": "14.5.4",
"@nrwl/cypress": "14.5.4",
"@nrwl/eslint-plugin-nx": "14.5.4",
"@nrwl/jest": "14.5.4",
"@nrwl/linter": "14.5.4",
"@nrwl/nest": "14.5.4",
"@nrwl/node": "14.5.4",
"@nrwl/workspace": "14.5.4",
"@types/express": "^4.17.13",
"@types/jest": "27.4.1",
"@types/node": "16.11.7",
"@types/request": "^2.48.7",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"copy-webpack-plugin": "^6.3.2",
"cypress": "^9.1.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"fs-extra": "^10.0.0",
"jest": "27.5.1",
"jest-preset-angular": "~11.1.2",
"nx": "14.5.4",
"plotly.js-dist": "^2.5.1",
"prettier": "^2.6.2",
"request": "^2.88.2",
"ts-jest": "27.1.4",
"ts-node": "~10.8.0",
"typescript": "~4.7.2"
}
}