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

80 lines
2.4 KiB
JSON
Raw Normal View History

{
2022-05-25 18:12:43 -06:00
"name": "@aleleba/create-node-ts-graphql-server",
2023-03-06 11:09:08 -06:00
"version": "1.2.11",
"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 --legacy-peer-deps"
},
"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-02-10 16:47:27 -06:00
"@graphql-tools/schema": "^9.0.16",
2023-03-02 08:25:20 -06:00
"body-parser": "^1.20.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
2022-09-29 14:28:36 -06:00
"dotenv": "^16.0.3",
2022-12-05 11:08:55 -06:00
"express": "^4.18.2",
"express-graphql": "^0.12.0",
2022-08-16 16:37:12 -06:00
"graphql": "^16.6.0",
"graphql-playground-middleware-express": "^1.7.23",
"graphql-subscriptions": "^2.0.0",
2023-02-10 16:47:27 -06:00
"graphql-tools": "^8.3.18",
2023-03-06 11:09:08 -06:00
"graphql-ws": "^5.12.0",
"web-push": "^3.5.0",
2023-02-20 18:22:53 -06:00
"ws": "^8.12.1"
},
"devDependencies": {
2023-02-20 18:22:53 -06:00
"@babel/core": "^7.21.0",
2022-12-05 11:08:55 -06:00
"@babel/preset-env": "^7.20.2",
2023-02-20 18:22:53 -06:00
"@babel/preset-typescript": "^7.21.0",
"@babel/register": "^7.21.0",
2023-01-25 09:54:50 -06:00
"@types/jest": "^29.4.0",
2023-03-06 11:09:08 -06:00
"@types/node": "^18.14.6",
"@types/webpack": "^5.28.0",
2023-02-20 18:22:53 -06:00
"@types/webpack-node-externals": "^3.0.0",
2023-03-02 08:25:20 -06:00
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
2023-01-25 09:54:50 -06:00
"babel-loader": "^9.1.2",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
2023-03-02 08:25:20 -06:00
"eslint": "^8.35.0",
2023-02-10 16:47:27 -06:00
"eslint-webpack-plugin": "^4.0.0",
2023-03-06 11:09:08 -06:00
"jest": "^29.5.0",
"nodemon": "^2.0.21",
2022-12-28 07:47:32 -06:00
"supertest": "^6.3.3",
2023-01-25 09:54:50 -06:00
"ts-jest": "^29.0.5",
2022-12-05 11:08:55 -06:00
"ts-loader": "^9.4.2",
2023-02-10 16:47:27 -06:00
"typescript": "^4.9.5",
2022-12-05 11:08:55 -06:00
"webpack": "^5.75.0",
2022-12-28 07:47:32 -06:00
"webpack-cli": "^5.0.1",
"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"
}
}