-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.68 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
{
"name": "enhanced-preprints",
"version": "0.0.1",
"description": "Enhanced Preprints",
"repository": "[email protected]:elifesciences/enhanced-preprints.git",
"author": "Will Byrne <[email protected]>",
"license": "MIT",
"devDependencies": {
"@aws-sdk/types": "^3.292.0",
"@shelf/jest-mongodb": "^4.1.7",
"@tsconfig/node16": "16.1.3",
"@types/eslint": "8.56.12",
"@types/express": "4.17.21",
"@types/jest": "29.5.14",
"@types/node": "20.17.9",
"@types/supertest": "^6.0.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.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": "^3.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"jest-mock": "29.7.0",
"nodemon": "3.1.7",
"supertest": "^7.0.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.292.0",
"@aws-sdk/credential-providers": "^3.292.0",
"@smithy/util-stream": "^3.1.3",
"axios": "1.7.9",
"express": "4.21.1",
"joi": "^17.7.0",
"mongodb": "6.11.0",
"winston": "3.17.0"
},
"scripts": {
"start": "ts-node src/server.ts",
"start:dev": "nodemon src/server.ts",
"test": "jest",
"test:integration": "jest -c jest.config.integration.ts",
"lint": "eslint --ext .ts src/ integration-tests/",
"lint:fix": "eslint --fix --ext .ts src/ integration-tests/"
}
}