-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1004 Bytes
/
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
{
"name": "igdb-graphql",
"version": "0.9.0",
"main": "./dist/index.js",
"author": "0-don <don.cryptus@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --poll --respawn --transpile-only src/index.ts",
"build": "tsc",
"start": "cross-env NODE_ENV=production node dist/index.js",
"env": "npx @dotenv/cli pull",
"prettier": "npx prettier --write ./src"
},
"devDependencies": {
"@types/node": "^17.0.23",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"dotenv-cli": "^5.1.0",
"prettier": "^2.6.1",
"prettier-plugin-organize-imports": "^2.3.4",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3"
},
"dependencies": {
"apollo-server": "^3.6.6",
"apollo-server-plugin-response-cache": "^3.5.2",
"class-validator": "^0.13.2",
"dayjs": "^1.11.0",
"graphql": "^15.3.0",
"reflect-metadata": "^0.1.13",
"ts-igdb-client": "^0.2.5",
"type-graphql": "^1.1.1",
"type-graphql-dataloader": "^0.5.0"
}
}