-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 982 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
36
{
"name": "graphql-apollo-starter",
"version": "1.0.0",
"description": "A GraphQL starter boilerplate",
"main": "index.js",
"repository": "https://github.com/rodzy/graphql-apollo-starter",
"author": "https://github.com/rodzy",
"license": "MIT",
"dependencies": {
"apollo-cache-control": "^0.11.1",
"apollo-server-express": "^2.16.1",
"bcrypt": "^5.0.0",
"class-validator": "^0.12.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"graphql": "^15.3.0",
"graphql-config": "^3.0.0-rc.3",
"pg": "^8.3.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.0.0-rc.3",
"typeorm": "^0.2.25"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.7",
"@types/express": "^4.17.7",
"@types/graphql": "^14.5.0",
"@types/node": "^14.0.27",
"ts-node": "^8.10.2",
"ts-node-dev": "^1.0.0-pre.56",
"typescript": "^3.9.7"
},
"scripts": {
"start": "ts-node-dev src/index.ts"
}
}