2022-08-15 14:57:57 +02:00
|
|
|
{
|
2022-08-22 14:19:50 +02:00
|
|
|
"name": "ocean-ens-proxy",
|
|
|
|
"description": "Ocean Protocol ENS Proxy Server",
|
2023-01-10 17:27:21 +01:00
|
|
|
"version": "0.1.0",
|
2022-08-15 14:57:57 +02:00
|
|
|
"author": "Ocean Protocol <devops@oceanprotocol.com>",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"scripts": {
|
|
|
|
"lint": "eslint --ignore-path .gitignore --ext .js --ext .ts --ext .tsx . && npm run type-check",
|
|
|
|
"clean": "rm -rf ./dist",
|
|
|
|
"format": "prettier --ignore-path .gitignore './**/*.{css,yml,js,ts,tsx,json}' --write",
|
|
|
|
"test:format": "npm run format && npm run lint",
|
2022-08-25 17:52:07 +02:00
|
|
|
"test:integration": "ts-mocha -p test/tsconfig.json --exit test/**/*.test.ts",
|
|
|
|
"test": "test:format && test:integration",
|
2022-08-22 15:03:45 +02:00
|
|
|
"type-check": "tsc --noEmit"
|
2022-08-15 14:57:57 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-11-01 03:21:02 +01:00
|
|
|
"ethers": "^5.7.2"
|
2022-08-15 14:57:57 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-07-01 03:36:49 +02:00
|
|
|
"@types/chai": "^4.3.5",
|
2023-04-04 15:22:46 +02:00
|
|
|
"@types/glob": "^8.1.0",
|
2023-02-01 03:04:06 +01:00
|
|
|
"@types/mocha": "^10.0.1",
|
2022-08-25 16:37:06 +02:00
|
|
|
"@types/test-listen": "^1.1.0",
|
2023-06-12 11:40:41 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.59.9",
|
2023-08-04 11:10:30 +02:00
|
|
|
"@typescript-eslint/parser": "^5.62.0",
|
2023-12-01 03:06:58 +01:00
|
|
|
"@vercel/node": "^3.0.11",
|
2024-12-01 03:38:08 +01:00
|
|
|
"axios": "^1.7.8",
|
2023-09-01 03:59:50 +02:00
|
|
|
"chai": "^4.3.8",
|
2023-08-01 03:32:33 +02:00
|
|
|
"eslint": "^8.46.0",
|
2023-05-01 03:58:09 +02:00
|
|
|
"eslint-config-prettier": "^8.8.0",
|
2022-08-15 14:57:57 +02:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2023-02-01 03:03:46 +01:00
|
|
|
"husky": "^8.0.3",
|
2023-05-01 11:43:40 +02:00
|
|
|
"prettier": "^2.8.8",
|
2022-08-15 14:57:57 +02:00
|
|
|
"pretty-quick": "^3.1.3",
|
2022-08-25 15:57:26 +02:00
|
|
|
"test-listen": "^1.1.0",
|
|
|
|
"ts-mocha": "^10.0.0",
|
2022-10-03 13:35:00 +02:00
|
|
|
"typescript": "4.8.4",
|
2022-08-25 15:57:26 +02:00
|
|
|
"vercel-node-server": "^2.2.1"
|
2022-08-15 14:57:57 +02:00
|
|
|
}
|
|
|
|
}
|