1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
cards-database/server/package.json
Florian Bouillon 40240f2ab9
fix: Fixed DB path (#134)
* Fixed path

Signed-off-by: Avior <github@avior.me>

* Fixed Builder

Signed-off-by: Avior <github@avior.me>
2021-11-04 11:51:09 +01:00

39 lines
915 B
JSON

{
"name": "@tcgdex/server",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "ts-node --project ../tsconfig.json compiler/index.ts",
"dev": "ts-node-dev -T src/index.ts",
"build": "tsc --project tsconfig.json",
"start": "node dist/index.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"@dzeio/config": "^1.1.4",
"@dzeio/object-util": "^1.4.2",
"@tcgdex/sdk": "^2.4.5",
"apicache": "^1.6.3",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.7.0",
"js2xmlparser": "^4.0.1"
},
"devDependencies": {
"@types/apicache": "^1.6.0",
"@types/express": "^4.17.13",
"@types/glob": "^7.2.0",
"@types/node": "^16.11.6",
"@types/node-fetch": "^2.5.12",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"node-fetch": "^2.6.6",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.4.4"
}
}