mirror of
https://github.com/GiriNeko/YesPlayMusic.git
synced 2025-12-16 13:17:46 +00:00
37 lines
1.1 KiB
JSON
37 lines
1.1 KiB
JSON
{
|
|
"name": "server",
|
|
"version": "1.0.0",
|
|
"description": "This project was bootstrapped with Fastify-CLI.",
|
|
"main": "app.ts",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run build:ts && tsc -p test/tsconfig.json && tap --ts \"test/**/*.test.ts\"",
|
|
"start": "fastify start --port 35530 --address 0.0.0.0 -l info dist/app.js",
|
|
"build:ts": "tsc",
|
|
"watch:ts": "tsc -w",
|
|
"dev": "npm run build:ts && concurrently -k -p \"[{name}]\" -n \"TypeScript,App\" -c \"yellow.bold,cyan.bold\" \"npm:watch:ts\" \"npm:dev:start\"",
|
|
"dev:start": "fastify start --ignore-watch=.ts$ -w --port 35530 --address 0.0.0.0 -l info -P dist/app.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@fastify/autoload": "^5.0.0",
|
|
"@fastify/sensible": "^4.1.0",
|
|
"axios": "^0.27.2",
|
|
"fastify": "^4.0.0",
|
|
"fastify-cli": "^4.4.0",
|
|
"fastify-plugin": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.0.0",
|
|
"@types/tap": "^15.0.5",
|
|
"concurrently": "^7.0.0",
|
|
"fastify-tsconfig": "^1.0.1",
|
|
"tap": "^16.1.0",
|
|
"ts-node": "^10.4.0",
|
|
"typescript": "^4.5.4"
|
|
}
|
|
}
|