-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 964 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
{
"name": "pokeapi",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/loivis/pokeapi-typegraphql",
"author": "loivis <github@kinase.wang>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev -r tsconfig-paths/register --respawn src/index.ts",
"heroku": "ts-node -r tsconfig-paths/register src/index.ts"
},
"dependencies": {
"@types/async-lock": "^1.1.1",
"@types/node-fetch": "^2.3.3",
"apollo-server-express": "^2.4.8",
"async-lock": "^1.2.0",
"camelcase-keys": "^5.2.0",
"express": "^4.16.4",
"graphql": "^14.2.1",
"node-fetch": "^2.4.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.1.0",
"tsconfig-paths": "^3.8.0",
"type-graphql": "^0.17.3",
"typedi": "^0.8.0"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/graphql": "^14.2.0",
"@types/node": "^11.13.8",
"ts-node-dev": "^1.0.0-pre.32",
"typescript": "^3.4.5"
}
}