food-graphql-server/package.json

26 lines
597 B
JSON
Raw Permalink Normal View History

2019-01-26 13:06:08 +00:00
{
"name": "food-graphql-server",
2021-02-01 13:36:26 +00:00
"type": "module",
2019-01-26 13:06:08 +00:00
"version": "1.0.0",
"description": "The GraphQL server to reserve food.",
2019-01-26 13:06:08 +00:00
"main": "index.js",
"scripts": {
2021-02-01 13:36:26 +00:00
"start": "tsc-watch --onsuccess \"node ./src/index.js\""
2019-01-26 13:06:08 +00:00
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
2021-02-01 13:36:26 +00:00
"apollo-server": "^2.19.2",
"class-validator": "^0.13.1",
"graphql": "^15.5.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1",
2021-02-05 14:24:02 +00:00
"typescript": "^4.1.3",
2019-02-04 18:08:19 +00:00
"uuid": "^3.3.2",
2021-02-02 10:34:34 +00:00
"yup": "^0.32.8"
},
"devDependencies": {
2021-02-01 13:36:26 +00:00
"tsc-watch": "^4.2.9"
2019-01-26 13:06:08 +00:00
}
2021-02-09 20:38:29 +00:00
}