-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "@oceanprotocol/dockerhub-proxy",
"description": "Microservice API endpoint to validate Docker image URLs.",
"version": "0.1.0",
"type": "module",
"license": "Apache-2.0",
"homepage": "https://oceanprotocol.com",
"scripts": {
"start": "vercel dev",
"test": "npm run lint && npm run type-check",
"lint": "eslint --ignore-path .gitignore --ext .js --ext .ts --ext .tsx .",
"format": "prettier --ignore-path .gitignore './**/*.{css,yml,js,ts,tsx,json}' --write",
"type-check": "tsc --noEmit"
},
"dependencies": {
"axios": "^1.3.3"
},
"devDependencies": {
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/node": "^2.9.6",
"eslint": "^7.32.0",
"eslint-config-oceanprotocol": "^2.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "https://github.com/oceanprotocol/dockerhub-proxy"
},
"engines": {
"node": ">=14"
}
}