-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.86 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.86 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
{
"name": "enhanced-preprints-import",
"version": "0.0.1",
"description": "Enhanced Preprints import",
"repository": "git@github.com:elifesciences/enhanced-preprints-import.git",
"author": "Scott Aubrey <scott@aubrey.org.uk>",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.374.0",
"@aws-sdk/credential-providers": "^3.374.0",
"@aws-sdk/node-http-handler": "^3.374.0",
"@elifesciences/docmap-ts": "https://github.com/elifesciences/docmap-ts#v0.0.41",
"@stencila/schema": "^1.18.0",
"@temporalio/activity": "^1.7.4",
"@temporalio/client": "^1.7.4",
"@temporalio/common": "^1.7.4",
"@temporalio/worker": "^1.7.4",
"@temporalio/workflow": "^1.7.4",
"axios": "^1.2.2",
"fast-xml-parser": "^5.0.0",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"unzipper": "^0.12.0"
},
"devDependencies": {
"@aws-sdk/util-stream-node": "^3.374.0",
"@temporalio/testing": "^1.7.4",
"@tsconfig/node16": "^16.0.0",
"@types/eslint": "9.6.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"@types/unzipper": "^0.10.9",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"aws-sdk-client-mock": "^4.0.0",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "5.5.5",
"jest": "30.2.0",
"jest-mock": "^30.0.0",
"nodemon": "^3.0.0",
"ts-jest": "29.4.6"
},
"scripts": {
"start:worker": "ts-node src/worker.ts",
"start:worker:dev": "nodemon --signal SIGKILL src/worker.ts",
"test": "jest",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --fix --ext .ts src/"
}
}