-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.47 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
{
"name": "nuber-server",
"version": "1.0.0",
"description": "Server for (N)uber Clone Course on Nomad Academy. GraphQL, Typescript, NodeJS",
"main": "index.js",
"repository": "https://github.com/hsj112211/nuber-server",
"author": "Sung Jin Hwang <hsj8888888@gmail.com>",
"license": "MIT",
"dependencies": {
"babel-runtime": "^6.26.0",
"bcrypt": "^3.0.6",
"class-validator": "^0.9.1",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"graphql-tools": "3.0.4",
"graphql-yoga": "1.14.10",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"mailgun-js": "^0.22.0",
"merge-graphql-schemas": "1.5.2",
"morgan": "^1.9.1",
"pg": "^7.11.0",
"twilio": "^3.32.0",
"typeorm": "^0.2.18"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.5",
"@types/helmet": "^0.0.43",
"@types/jsonwebtoken": "^8.3.2",
"@types/mailgun-js": "^0.16.4",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.2",
"@types/twilio": "^0.0.10",
"gql-merge": "^0.0.6",
"graphql-to-typescript": "^0.1.2",
"nodemon": "^1.19.1",
"ts-node": "^8.2.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5"
},
"scripts": {
"predev": "yarn run types",
"dev": "cd src && nodemon --exec ts-node index.ts -e ts,graphql",
"pretypes": "gql-merge --out-file ./src/schema.graphql ./src/api/**/*.graphql",
"types": "graphql-to-typescript ./src/schema.graphql ./src/types/graph.d.ts"
}
}