Picsur/shared/package.json

26 lines
601 B
JSON
Raw Normal View History

2022-02-24 21:56:27 +00:00
{
"private": false,
2022-02-27 19:27:22 +00:00
"name": "picsur-shared",
2022-02-25 15:41:56 +00:00
"version": "0.0.0",
2022-02-27 19:27:22 +00:00
"description": "Shared libraries for Picsur",
2022-02-24 21:56:27 +00:00
"license": "GPL-3.0",
2022-02-27 19:27:22 +00:00
"repository": "https://github.com/rubikscraft/Picsur",
2022-02-24 21:56:27 +00:00
"author": "Rubikscraft <contact@rubikscraft.nl>",
2022-02-25 21:58:08 +00:00
"type": "commonjs",
2022-02-24 21:56:27 +00:00
"main": "./dist/index.js",
"dependencies": {
"class-transformer": "^0.5.1",
2022-02-25 11:22:00 +00:00
"class-validator": "^0.13.2",
"tsc-watch": "^4.6.0",
"typeorm": "^0.2.44"
2022-02-24 21:56:27 +00:00
},
"devDependencies": {
2022-02-25 21:58:08 +00:00
"@types/node": "^17.0.21",
2022-02-24 21:56:27 +00:00
"typescript": "^4.5.5"
},
"scripts": {
"start": "tsc-watch",
"build": "tsc"
}
}