compiler/package.json
Florian Bouillon ef866401a4
Moved files to link with the SDK
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-03-11 11:21:40 +01:00

35 lines
1.5 KiB
JSON

{
"name": "tcgdex-compiler",
"version": "1.0.0",
"main": "index.js",
"repository": "git@git.delta-wings.net:tcgdex/compiler.git",
"author": "Avior <florian.bouillon@delta-wings.net>",
"license": "MIT",
"private": false,
"scripts": {
"db:compile": "cd db && tsc --project tsconfig.json",
"db:test": "cd db && tsc --noEmit --project tsconfig.json",
"gen:all": "yarn gen:types && yarn gen:illustrators && yarn gen:hp && yarn gen:sets && yarn gen:tags && yarn gen:retreat && yarn gen:categories && yarn gen:rarities && yarn gen:cards && yarn gen:expansions",
"gen:types": "ts-node endpoints/types/index.ts && ts-node endpoints/types/item.ts",
"gen:illustrators": "ts-node endpoints/illustrators/updateDB.ts && ts-node endpoints/illustrators/index.ts && ts-node endpoints/illustrators/item.ts",
"gen:hp": "ts-node web/hp/generator.ts",
"gen:sets": "ts-node endpoints/sets/index.ts && ts-node endpoints/sets/item.ts && ts-node endpoints/sets/subitem.ts",
"gen:tags": "ts-node web/tags/generator.ts",
"gen:retreat": "ts-node web/retreat/generator.ts",
"gen:categories": "ts-node web/categories/generator.ts",
"gen:rarities": "ts-node web/rarities/generator.ts",
"gen:cards": "ts-node endpoints/cards/index.ts && ts-node endpoints/cards/item.ts",
"gen:expansions": "ts-node endpoints/expansions/index.ts && ts-node endpoints/expansions/item.ts"
},
"dependencies": {
"@tcgdex/sdk": "^1.0.2",
"glob": "^7.1.6"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^13.7.4",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}