-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.07 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
{
"name": "stela",
"version": "0.0.0",
"description": "A monolithic backend for Permanent.org",
"private": true,
"scripts": {
"build": "npm run build --ws",
"lint": "npm run lint --ws",
"test": "npm run test --ws --if-present",
"format": "npm run format --ws --if-present",
"postinstall": "if test -d node_modules/@edtf-ts/core; then patch-package; fi"
},
"workspaces": [
"./packages/logger",
"./packages/s3-utils",
"./packages/archivematica-utils",
"./packages/publisher-utils",
"./packages/file-utils",
"./packages/event_utils",
"./packages/permanent_models/",
"./packages/api",
"./packages/archivematica_cleanup",
"./packages/account_space_updater",
"./packages/record_thumbnail_attacher",
"./packages/thumbnail_refresh",
"./packages/event_send",
"./packages/file_url_refresh",
"./packages/access_copy_attacher",
"./packages/trigger_archivematica",
"./packages/metadata_attacher",
"./packages/file_copier"
],
"repository": {
"type": "git",
"url": "git+https://github.com/PermanentOrg/stela.git"
},
"author": "Permanent.org",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/PermanentOrg/stela/issues"
},
"homepage": "https://permanent.org",
"engines": {
"node": ">=24.0"
},
"dependencies": {
"patch-package": "^8.0.1"
},
"devDependencies": {
"@redocly/cli": "^2.46.0",
"@tsconfig/node24": "^24.0.3",
"@tsconfig/strictest": "^2.0.7",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.3",
"@types/http-errors": "^2.0.1",
"@types/mailchimp__mailchimp_transactional": "1.0.11",
"@types/node": "^24.10.1",
"@types/pg": "^8.20.0",
"@types/supertest": "^7.2.1",
"eslint": "^9.39.5",
"eslint-config-love": "154.1.0",
"eslint-config-prettier": "^10.1.8",
"@vitest/eslint-plugin": "^1.6.27",
"node-mocks-http": "^1.17.2",
"prettier": "^3.7.4",
"tsc-watch": "^7.2.0",
"vitest": "^4.1.11",
"@vitest/coverage-v8": "^4.1.10",
"tslint-tinypg": "^2.0.2",
"typescript": "^5.9.3",
"typescript-cp": "^0.1.11",
"typescript-eslint": "^8.68.0",
"vitest-mock-extended": "^5.1.1"
},
"type": "module"
}