old-automod/api/package.json

30 lines
634 B
JSON
Raw Normal View History

2022-01-22 19:51:29 +00:00
{
"name": "api",
"version": "1.0.0",
"description": "",
"exports": "./index",
"type": "module",
"scripts": {
"build": "rm -rf dist && tsc",
"start": "node --experimental-specifier-resolution=node dist/index",
"dev": "yarn build && yarn start"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.13",
2022-01-23 13:54:40 +00:00
"@types/monk": "^6.0.0",
2022-01-22 21:37:59 +00:00
"@types/ws": "^8.2.2",
2022-01-22 19:51:29 +00:00
"dotenv": "^14.2.0",
"express": "^4.17.2",
2022-01-22 21:37:59 +00:00
"log75": "^2.2.0",
2022-01-23 13:54:40 +00:00
"monk": "^7.3.4",
"ulid": "^2.3.0",
2022-01-22 21:37:59 +00:00
"ws": "^8.4.2"
},
"devDependencies": {
"typescript": "^4.5.5"
2022-01-22 19:51:29 +00:00
}
}