create-node-ts-graphql-server/package.json

91 lines
2.7 KiB
JSON
Raw Normal View History

{
2022-05-25 18:12:43 -06:00
"name": "@aleleba/create-node-ts-graphql-server",
2023-09-10 18:51:48 -06:00
"version": "1.5.7",
"description": "Node with Typescript and GraphQL Server",
"bin": "./bin/cli.js",
"main": "index.js",
"scripts": {
"start": "node build/index.js",
"start:dev": "webpack-cli --config webpack.config.dev.ts",
"start:nodemon": "nodemon build/index.js",
"build": "webpack-cli --config webpack.config.ts",
"lint": "eslint ./ --ext .js --ext .ts",
"lint:fix": "eslint ./ --ext .js --ext .ts --fix",
"test": "jest",
2023-02-20 18:22:53 -06:00
"test:watch": "jest --watch",
"check-updates": "npx npm-check-updates -u && npm i"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aleleba/node-ts-graphql-server.git"
},
"keywords": [
"node",
"express",
"typescript",
"graphql",
"server"
],
"author": "Alejandro Lembke Barrientos",
"license": "MIT",
"bugs": {
"url": "https://github.com/aleleba/node-ts-graphql-server/issues"
},
"homepage": "https://github.com/aleleba/node-ts-graphql-server#readme",
"dependencies": {
2023-06-15 07:18:22 -06:00
"@graphql-tools/schema": "^10.0.0",
2023-03-02 08:25:20 -06:00
"body-parser": "^1.20.2",
2023-03-10 07:18:24 -06:00
"class-validator": "^0.14.0",
"cookie-parse": "^0.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
2023-06-20 17:33:23 -06:00
"dotenv": "^16.3.1",
2022-12-05 11:08:55 -06:00
"express": "^4.18.2",
2023-09-10 18:51:48 -06:00
"graphql": "^16.8.0",
"graphql-http": "^1.22.0",
"graphql-playground-middleware-express": "^1.7.23",
"graphql-subscriptions": "^2.0.0",
2023-06-15 07:18:22 -06:00
"graphql-tools": "^9.0.0",
2023-09-10 18:51:48 -06:00
"graphql-ws": "^5.14.0",
2023-03-10 07:18:24 -06:00
"reflect-metadata": "^0.1.13",
2023-06-15 07:18:22 -06:00
"type-graphql": "^2.0.0-beta.2",
2023-09-10 18:51:48 -06:00
"web-push": "^3.6.5",
"ws": "^8.14.1"
},
"devDependencies": {
2023-09-10 18:51:48 -06:00
"@babel/core": "^7.22.17",
"@babel/preset-env": "^7.22.15",
"@babel/preset-typescript": "^7.22.15",
"@babel/register": "^7.22.15",
2023-03-06 16:37:37 -06:00
"@types/body-parser": "^1.19.2",
2023-09-10 18:51:48 -06:00
"@types/cookie-parser": "^1.4.4",
"@types/cors": "^2.8.14",
2023-03-06 16:37:37 -06:00
"@types/express": "^4.17.17",
2023-09-10 18:51:48 -06:00
"@types/jest": "^29.5.4",
"@types/node": "^20.6.0",
2023-03-06 16:37:37 -06:00
"@types/supertest": "^2.0.12",
2023-09-10 18:51:48 -06:00
"@types/webpack": "^5.28.2",
2023-02-20 18:22:53 -06:00
"@types/webpack-node-externals": "^3.0.0",
2023-06-15 07:18:22 -06:00
"@types/ws": "^8.5.5",
2023-09-10 18:51:48 -06:00
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
2023-09-10 18:51:48 -06:00
"eslint": "^8.49.0",
2023-04-14 08:28:15 -06:00
"eslint-webpack-plugin": "^4.0.1",
2023-09-10 18:51:48 -06:00
"jest": "^29.6.4",
"nodemon": "^3.0.1",
"resolve-ts-aliases": "^1.0.1",
2022-12-28 07:47:32 -06:00
"supertest": "^6.3.3",
2023-09-10 18:51:48 -06:00
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
2023-06-15 07:18:22 -06:00
"webpack-cli": "^5.1.4",
"webpack-manifest-plugin": "^5.0.0",
"webpack-node-externals": "^3.0.0",
2022-12-05 11:08:55 -06:00
"webpack-shell-plugin-next": "^2.3.1"
}
}