This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
icydns/package.json

31 lines
664 B
JSON
Raw Normal View History

2021-05-15 08:45:12 +00:00
{
2021-05-15 17:33:29 +00:00
"name": "icydns",
2021-05-15 08:45:12 +00:00
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
2021-05-15 17:33:29 +00:00
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"watch": "tsc -w",
2021-05-16 09:55:56 +00:00
"start": "node dist/index.js"
2021-05-15 08:45:12 +00:00
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
2021-05-21 13:41:06 +00:00
"cors": "^2.8.5",
2021-05-15 08:45:12 +00:00
"express": "^4.17.1",
2021-07-08 11:44:05 +00:00
"express-async-errors": "^3.1.1",
"uuid": "^8.3.2"
2021-05-15 08:45:12 +00:00
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
2021-09-04 07:59:56 +00:00
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.7.10",
2021-07-08 11:44:05 +00:00
"@types/uuid": "^8.3.1",
2021-09-04 07:59:56 +00:00
"typescript": "^4.4.2"
2021-05-15 08:45:12 +00:00
}
}