This repository has been archived by the owner on Nov 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 2.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "kingdom-rush-graphql",
"version": "0.0.0",
"description": "Simply get Kingdom Rush Tower information through queries in GraphQL",
"main": "dist/index.js",
"engines": {
"node": "12.x"
},
"scripts": {
"db:create": "bash ./scripts/run_db_create.sh",
"db:migrate": "rm -rf ./dist/migrations && npm run tsc && typeorm migration:run && npm run db:migrate-test;",
"db:migrate-test": "ts-node ./node_modules/typeorm/cli.js migration:run -c \"test\"",
"db:reset": "bash ./scripts/run_db_reset.sh",
"db:reset-data": "bash ./scripts/run_reset_data.sh",
"db:seed-json": "npm run tsc && node dist/seed/populate.js",
"db:drop": "bash ./scripts/run_db_cleanup.sh",
"setup": "bash ./scripts/run_setup.sh",
"tsc": "tsc -p tsconfig.json",
"build": "npm run format && npm run tsc",
"compile": "npm run tsc && node dist/index.js",
"format": "prettier --config ./.prettierrc.yaml --write ./src/*.ts",
"start:dev": "nodemon --ignore tests -e ts --exec \"npm run compile\"",
"start": "node dist/index.js",
"test:resolver": "jest --testPathPattern=tests/resolvers --verbose",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mithi/kingdom-rush-graphql.git"
},
"keywords": [
"kingdom-rush-game",
"kingdom-rush-videogame",
"kingdom-rush",
"tower-defense",
"graphql",
"apollo-server",
"typescript",
"express",
"typeorm",
"typegraphl"
],
"author": "Mithi",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mithi/kingdom-rush-graphql/issues"
},
"homepage": "https://github.com/mithi/kingdom-rush-graphql#readme",
"devDependencies": {
"@types/express": "^4.17.8",
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.14",
"apollo-server-testing": "^2.18.2",
"dotenv": "^8.2.0",
"jest": "^26.5.2",
"nodemon": "^2.0.5",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"apollo-server": "^2.25.3",
"class-validator": "^0.12.2",
"express": "^4.17.1",
"graphql": "^15.3.0",
"pg": "^8.4.1",
"type-graphql": "^1.1.0",
"typeorm": "^0.3.15",
"reflect-metadata": "^0.1.13"
}
}