-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "enhanced-preprints-import-controller",
"devDependencies": {
"@tsconfig/node20": "^20.1.4",
"@types/body-parser": "^1",
"@types/express": "^4",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.7",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "^8.33.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"globals": "^15.12.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"dependencies": {
"@elifesciences/docmap-ts": "https://github.com/elifesciences/docmap-ts#v0.0.41",
"@temporalio/client": "^1.11.3",
"axios": "^1.7.9",
"body-parser": "^1.20.3",
"express": "^4.21.1",
"joi": "^17.13.3"
},
"scripts": {
"start": "ts-node ./src/main.ts",
"start:dev": "nodemon ./src/main.ts",
"lint": "eslint --ext .ts src/",
"test": "jest",
"test:integration": "jest -c jest.config.integration.ts"
}
}