31 lines
759 B
JSON
31 lines
759 B
JSON
|
{
|
||
|
"name": "@transmute/server",
|
||
|
"version": "0.0.0",
|
||
|
"description": "Transmute API",
|
||
|
"author": "ztimson",
|
||
|
"main": "dist/main.js",
|
||
|
"scripts": {
|
||
|
"build": "npx tsc",
|
||
|
"postbuild": "npx ncp node_modules/@transmute/client/dist/* dist/client",
|
||
|
"start": "npm run watch:ts | npm run serve",
|
||
|
"serve": "nodemon dist/src/main.js || npm run serve",
|
||
|
"watch": "npm run watch:ts",
|
||
|
"watch:ts": "npx tsc -w"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"@transmute/common": "^0.0.0",
|
||
|
"better-sqlite3": "^8.2.0",
|
||
|
"cors": "^2.8.5",
|
||
|
"express": "^4.18.2",
|
||
|
"kysely": "^0.23.5",
|
||
|
"socket.io": "^4.6.1"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/express": "^4.17.17",
|
||
|
"@types/node": "^18.15.3",
|
||
|
"nodemon": "^2.0.21",
|
||
|
"source-map-support": "^0.5.21",
|
||
|
"typescript": "^4.9.5"
|
||
|
}
|
||
|
}
|