-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.92 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.92 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
{
"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"
},
"workspaces": [
"./packages/logger",
"./packages/s3-utils",
"./packages/archivematica-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/file_url_refresh",
"./packages/access_copy_attacher",
"./packages/trigger_archivematica",
"./packages/metadata_attacher"
],
"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"
},
"devDependencies": {
"@redocly/cli": "^2.8.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/jest": "30.0.0",
"@types/jest-when": "^3.5.5",
"@types/mailchimp__mailchimp_transactional": "1.0.11",
"@types/node": "^24.10.1",
"@types/pg": "^8.15.4",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"eslint": "^9.39.3",
"eslint-config-love": "^151.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.15.0",
"jest": "30.2.0",
"jest-mock-extended": "^4.0.0",
"jest-when": "^3.7.0",
"node-mocks-http": "^1.17.2",
"prettier": "^3.7.4",
"ts-jest": "29.4.6",
"tsc-watch": "^7.2.0",
"tslint-tinypg": "^2.0.2",
"typescript": "^5.9.3",
"typescript-cp": "^0.1.9",
"typescript-eslint": "^8.56.1"
}
}