-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) Β· 885 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) Β· 885 Bytes
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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "cd src && nodemon --exec ts-node index.ts -e ts, graphql",
"predev": "yarn run types",
"types": "graphql-to-typescript ./src/schema.graphql ./src/types/graphql.d.ts",
"pretypes": "gql-merge --out-file ./src/schema.graphql ./src/api/**/*.graphql"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-runtime": "^6.26.0",
"dotenv": "^8.2.0",
"gql-merge": "^0.0.6",
"graphql-to-typescript": "^0.1.2",
"graphql-tools": "^4.0.6",
"graphql-yoga": "^1.18.3",
"merge-graphql-schemas": "^1.7.6",
"nodemon": "^2.0.2",
"pg": "^7.17.0",
"ts-node": "^8.5.4",
"tslint-config-prettier": "^1.18.0",
"typeorm": "^0.2.22",
"typescript": "^3.7.4"
},
"devDependencies": {
"@types/node": "^13.1.2"
}
}