generated from finos-labs/project-blueprint
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.46 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.46 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
{
"name": "@finos/calm-server",
"version": "0.2.1",
"description": "CALM Server - A server implementation for the Common Architecture Language Model",
"homepage": "https://calm.finos.org",
"repository": {
"type": "git",
"url": "https://github.com/finos/architecture-as-code.git"
},
"main": "dist/index.js",
"files": [
"dist/"
],
"bin": {
"calm-server": "dist/index.js"
},
"scripts": {
"build": "tsup && npm run copy-calm-schema",
"copy-calm-schema": "copyfiles \"../calm/release/**/meta/*\" \"../calm/draft/**/meta/*\" dist/calm/",
"test": "vitest run",
"lint": "eslint src",
"lint-fix": "eslint src --fix"
},
"keywords": [
"calm",
"server",
"architecture"
],
"author": "",
"license": "Apache-2.0",
"dependencies": {
"@finos/calm-shared": "file:../shared",
"commander": "^14.0.0",
"copyfiles": "^2.4.1",
"express": "^4.18.2",
"express-rate-limit": "^8.2.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.15.0",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"node-fetch": "^2.7.0",
"supertest": "^7.0.0",
"tsup": "^8.3.5",
"typescript": "^5.8.2",
"vitest": "^3.1.1"
}
}