-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.43 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
{
"name": "storage-service",
"version": "1.1.8",
"description": "",
"main": "build/server.js",
"scripts": {
"test": "jest",
"start": "ts-node init.ts && node build/server.js",
"start-dev": "ts-node init.ts && nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'npx ts-node --pretty -T' src/server.ts | pino-pretty",
"lint": "eslint --ext .ts .",
"lint-fix": "eslint --ext .ts --fix .",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actris-cloudnet/storage-service.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/actris-cloudnet/storage-service/issues"
},
"homepage": "https://github.com/actris-cloudnet/storage-service#readme",
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/basic-auth": "^1.1.8",
"@types/express": "^5.0.0",
"@types/jest": "^29.2.4",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"axios": "^1.2.1",
"eslint": "^8.29.0",
"eslint-plugin-jest": "^27.1.6",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"pino-pretty": "^13.0.0",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"aws-sdk": "^2.1275.0",
"basic-auth": "^2.0.1",
"express": "^5.0.0",
"pg": "^8.8.0",
"pino": "^9.6.0",
"pino-http": "^10.3.0"
}
}