Files
graphql-api-js/package.json
T
2021-04-06 14:53:20 +02:00

41 lines
975 B
JSON

{
"name": "graphql-server-pw",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "nodemon -w src --ext ts --exec ts-node src/index.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-datasource": "^0.8.0",
"apollo-datasource-rest": "^0.11.0",
"apollo-server": "^2.22.2",
"datasource-sql": "^1.4.0",
"dotenv": "^8.2.0",
"graphql": "^15.5.0",
"knex-stringcase": "^1.4.5",
"nodemon": "^2.0.7",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"validator": "^13.5.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/__utils"
]
}
}