mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-26 18:42:16 +03:00
36 lines
980 B
JSON
36 lines
980 B
JSON
{
|
|
"name": "wasp-studio-server",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"type": "module",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"start": "tsc --noEmit && ts-node -r dotenv/config ./src/index.ts",
|
|
"dev": "nodemon ./src/index.ts",
|
|
"build:client": "npm --prefix ./client install && npm --prefix ./client run copy",
|
|
"build": "npm run build:client && rm -rf dist && tsc && cp -r ./public ./dist/public"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@swc/core": "^1.3.52",
|
|
"@swc/helpers": "^0.5.0",
|
|
"@tsconfig/node18": "^1.0.1",
|
|
"@types/node": "^18.15.12",
|
|
"nodemon": "^2.0.22",
|
|
"regenerator-runtime": "^0.13.11",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^5.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cors": "^8.3.0",
|
|
"@fastify/static": "^6.11.2",
|
|
"commander": "^11.0.0",
|
|
"dotenv": "^16.0.3",
|
|
"fastify": "^4.23.2",
|
|
"fastify-socket.io": "^4.0.0",
|
|
"socket.io": "^4.7.2"
|
|
}
|
|
}
|