forked from ncats/RaMP-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (82 loc) · 2.61 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (82 loc) · 2.61 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
81
82
{
"name": "ramp",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "nx",
"start": "nx serve",
"build": "nx build",
"test": "nx run-many --all --target=test",
"postinstall": "node ./decorate-angular-cli.js && ngcc --properties es2020 browser module main",
"dev:ssr": "ng run ramp-client:serve-ssr",
"serve:ssr": "node dist/ramp-client/server/main.js",
"build:ssr": "ng build && ng run ramp-client:server",
"prerender": "ng run ramp-client:prerender"
},
"private": true,
"dependencies": {
"@angular/animations": "14.2.11",
"@angular/cdk": "14.2.7",
"@angular/common": "14.2.11",
"@angular/compiler": "14.2.11",
"@angular/core": "14.2.11",
"@angular/flex-layout": "^14.0.0-beta.40",
"@angular/forms": "14.2.11",
"@angular/material": "14.2.7",
"@angular/platform-browser": "14.2.11",
"@angular/platform-browser-dynamic": "14.2.11",
"@angular/platform-server": "14.2.11",
"@angular/router": "14.2.11",
"@ngrx/component-store": "14.0.2",
"@ngrx/effects": "14.0.2",
"@ngrx/entity": "14.0.2",
"@ngrx/router-store": "14.0.2",
"@ngrx/store": "14.0.2",
"@nguniversal/express-engine": "^14.0.3",
"@nrwl/angular": "15.1.1",
"d3": "^7.2.1",
"express": "^4.15.2",
"rxjs": "~7.5.0",
"swagger-ui": "4.15.5",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "14.2.9",
"@angular-eslint/eslint-plugin": "14.0.4",
"@angular-eslint/eslint-plugin-template": "14.0.4",
"@angular-eslint/template-parser": "14.0.4",
"@angular/cli": "~14.2.0",
"@angular/compiler-cli": "14.2.11",
"@angular/language-service": "14.2.11",
"@ngrx/schematics": "14.0.2",
"@ngrx/store-devtools": "14.0.2",
"@nguniversal/builders": "^14.0.3",
"@nrwl/cli": "15.1.1",
"@nrwl/cypress": "15.1.1",
"@nrwl/eslint-plugin-nx": "15.1.1",
"@nrwl/jest": "15.1.1",
"@nrwl/linter": "15.1.1",
"@nrwl/workspace": "15.1.1",
"@types/d3": "^7.1.0",
"@types/express": "^4.17.0",
"@types/jest": "28.1.8",
"@types/node": "^14.14.33",
"@types/swagger-ui": "^3.52.0",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"cypress": "^8.3.0",
"eslint": "8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"jasmine-marbles": "~0.9.1",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.1",
"jest-preset-angular": "12.2.2",
"nx": "15.1.1",
"prettier": "2.7.1",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typescript": "4.8.4"
}
}