first commit
This commit is contained in:
45
package.json
Normal file
45
package.json
Normal file
@@ -0,0 +1,45 @@
|
||||
{
|
||||
"name": "siliconflow-api-key-validator",
|
||||
"version": "1.0.0",
|
||||
"description": "A full-stack application to validate and manage SiliconFlow API keys",
|
||||
"main": "dist/server.js",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "concurrently \"npm run server:dev\" \"npm run client:dev\"",
|
||||
"server:dev": "npx tsx src/server.ts",
|
||||
"client:dev": "cd frontend && npm run dev",
|
||||
"build": "npm run build:server && npm run build:client",
|
||||
"build:server": "tsc -p tsconfig.server.json",
|
||||
"build:client": "cd frontend && npm run build",
|
||||
"start": "node dist/server.js",
|
||||
"migrate": "prisma migrate deploy"
|
||||
},
|
||||
"keywords": [
|
||||
"api-key",
|
||||
"validator",
|
||||
"siliconflow"
|
||||
],
|
||||
"author": "",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@prisma/client": "^6.15.0",
|
||||
"axios": "^1.6.0",
|
||||
"compression": "^1.7.4",
|
||||
"cors": "^2.8.5",
|
||||
"dotenv": "^16.3.1",
|
||||
"express": "^4.18.2",
|
||||
"helmet": "^7.1.0",
|
||||
"http-status-codes": "^2.3.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/compression": "^1.7.5",
|
||||
"@types/cors": "^2.8.17",
|
||||
"@types/express": "^4.17.21",
|
||||
"@types/node": "^20.10.0",
|
||||
"concurrently": "^8.2.2",
|
||||
"nodemon": "^3.0.2",
|
||||
"prisma": "^6.15.0",
|
||||
"ts-node": "^10.9.2",
|
||||
"typescript": "^5.9.2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user