-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.67 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
{
"name": "@morgan-stanley/fdc3-web-monorepo",
"version": "1.0.0",
"type": "module",
"license": "Apache-2.0",
"author": "Morgan Stanley",
"scripts": {
"clean": "rimraf dist build reports docs tmp coverage",
"reset": "nx reset && npm run clean",
"lint:fix": "nx run-many -t lint --fix",
"lint": "nx run-many -t lint",
"build": "nx run-many -t build",
"test": "nx run-many -t test --exclude @morgan-stanley/fdc3-web-monorepo --watch=false",
"test:watch": "nx test @morgan-stanley/fdc3-web-monorepo --watch",
"type-check-specs": "nx run-many -t type-check-specs",
"start": "nx serve test-harness",
"generate-docs": "nx run-many -t generate-docs",
"prebuild:release": "npm run reset",
"build:release": "nx run-many -t build:release",
"release": "nx release"
},
"workspaces": [
"projects/*"
],
"devDependencies": {
"@eslint/compat": "^1.4.1",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@finos/fdc3": "^2.2.3",
"@morgan-stanley/ts-mocking-bird": "^1.3.4",
"@nx/esbuild": "21.6.11",
"@nx/eslint": "21.6.11",
"@nx/js": "21.6.11",
"@nx/vite": "21.6.11",
"@nx/web": "21.6.11",
"@nx/workspace": "21.6.11",
"@swc-node/register": "^1.12.1",
"@swc/core": "^1.16.1",
"@swc/helpers": "~0.5.23",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^22.20.1",
"@typescript-eslint/eslint-plugin": "^8.68.0",
"@typescript-eslint/parser": "^8.68.0",
"@vitest/coverage-v8": "^3.2.7",
"@vitest/ui": "^3.1.3",
"bootstrap": "^5.3.8",
"cors": "^2.8.6",
"esbuild": "^0.28.2",
"eslint": "9.39",
"eslint-config-prettier": "10.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-license-header": "^0.9.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.4.1",
"express": "^5.2.1",
"globals": "^16.5.0",
"jiti": "2.7.0",
"jsdom": "~26.1.0",
"lit-html": "^3.3.3",
"nx": "21.6.11",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"sass-embedded": "^1.103.1",
"swc-loader": "0.2.7",
"tslib": "^2.8.1",
"typedoc": "^0.28.20",
"typescript": "~5.9.3",
"typescript-eslint": "^8.68.0",
"uuid": "^14.0.2",
"vite": "^6.4.3",
"vite-plugin-checker": "^0.14.5",
"vitest": "^3.1.3"
}
}