You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
863 B

{
"name": "campus-rating-services",
"version": "1.0.0",
"description": "链下服务:排名分数和合理性分数计算",
"main": "index.js",
"scripts": {
"dev": "tsx watch ranking-service.ts",
"start": "tsx ranking-service.ts",
"dev:rationality": "tsx watch rationality-service.ts",
"rationality": "tsx rationality-service.ts",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:rationality\"",
"start:all": "concurrently \"npm run start\" \"npm run rationality\"",
"setup": "node setup-env.js"
},
"keywords": [
"blockchain",
"web3",
"campus-rating"
],
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1",
"viem": "^2.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"concurrently": "^9.2.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}