-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.81 KB
/
package.json
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
{
"name": "enhanced-preprints-import",
"version": "0.0.1",
"description": "Enhanced Preprints import",
"repository": "[email protected]:elifesciences/enhanced-preprints-import.git",
"author": "Scott Aubrey <[email protected]>",
"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": "^4.0.11",
"ts-node": "10.9.2",
"typescript": "5.7.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": "8.56.12",
"@types/jest": "^29.2.5",
"@types/node": "^20.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": "9.1.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "5.2.2",
"jest": "29.7.0",
"jest-mock": "^29.3.1",
"nodemon": "^3.0.0",
"ts-jest": "29.2.5"
},
"scripts": {
"start:worker": "ts-node src/worker.ts",
"start:worker:dev": "nodemon --signal SIGKILL src/worker.ts",
"test": "jest",
"lint": "eslint --ext .ts src/"
}
}