Files
Picsur/shared/package.json

26 lines
601 B
JSON
Raw Normal View History

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