2022-05-25 15:08:50 -06:00
|
|
|
{
|
2022-05-25 18:12:43 -06:00
|
|
|
"name": "@aleleba/create-node-ts-graphql-server",
|
2022-06-03 07:13:27 -06:00
|
|
|
"version": "1.0.7",
|
2022-05-25 15:08:50 -06:00
|
|
|
"description": "Node with Typescript and GraphQL Server",
|
2022-05-25 17:39:38 -06:00
|
|
|
"bin": "./bin/cli.js",
|
2022-05-25 15:08:50 -06:00
|
|
|
"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",
|
2022-05-25 17:39:38 -06:00
|
|
|
"test": "jest",
|
|
|
|
"test:watch": "jest --watch"
|
2022-05-25 15:08:50 -06:00
|
|
|
},
|
|
|
|
"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": {
|
|
|
|
"@graphql-tools/schema": "^8.3.13",
|
|
|
|
"body-parser": "^1.20.0",
|
|
|
|
"cookie-parser": "^1.4.6",
|
|
|
|
"cors": "^2.8.5",
|
|
|
|
"dotenv": "^16.0.1",
|
|
|
|
"express": "^4.18.1",
|
|
|
|
"express-graphql": "^0.12.0",
|
2022-05-26 07:15:12 -06:00
|
|
|
"graphql": "^16.5.0",
|
2022-05-25 15:08:50 -06:00
|
|
|
"graphql-subscriptions": "^2.0.0",
|
|
|
|
"graphql-tools": "^8.2.11",
|
|
|
|
"graphql-ws": "^5.8.2",
|
|
|
|
"web-push": "^3.5.0",
|
2022-05-31 07:39:23 -06:00
|
|
|
"ws": "^8.7.0"
|
2022-05-25 15:08:50 -06:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@babel/core": "^7.18.2",
|
|
|
|
"@babel/preset-env": "^7.18.2",
|
|
|
|
"@babel/preset-typescript": "^7.17.12",
|
|
|
|
"@babel/register": "^7.17.7",
|
|
|
|
"@types/jest": "^27.5.1",
|
2022-05-31 07:39:23 -06:00
|
|
|
"@types/node": "^17.0.36",
|
2022-05-25 15:08:50 -06:00
|
|
|
"@types/webpack": "^5.28.0",
|
|
|
|
"@types/webpack-node-externals": "^2.5.3",
|
2022-05-31 07:39:23 -06:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.27.0",
|
|
|
|
"@typescript-eslint/parser": "^5.27.0",
|
2022-05-25 15:08:50 -06:00
|
|
|
"babel-loader": "^8.2.5",
|
|
|
|
"clean-webpack-plugin": "^4.0.0",
|
|
|
|
"compression-webpack-plugin": "^10.0.0",
|
|
|
|
"eslint": "^8.16.0",
|
|
|
|
"eslint-webpack-plugin": "^3.1.1",
|
2022-05-25 17:39:38 -06:00
|
|
|
"jest": "^28.1.0",
|
2022-05-25 15:08:50 -06:00
|
|
|
"nodemon": "^2.0.16",
|
2022-05-25 17:39:38 -06:00
|
|
|
"supertest": "^6.2.3",
|
|
|
|
"ts-jest": "^28.0.3",
|
2022-05-25 15:08:50 -06:00
|
|
|
"ts-loader": "^9.3.0",
|
|
|
|
"typescript": "^4.7.2",
|
|
|
|
"webpack": "^5.72.1",
|
|
|
|
"webpack-cli": "^4.9.2",
|
|
|
|
"webpack-manifest-plugin": "^5.0.0",
|
|
|
|
"webpack-node-externals": "^3.0.0",
|
|
|
|
"webpack-shell-plugin-next": "^2.2.2"
|
|
|
|
}
|
|
|
|
}
|