This repository has been archived by the owner on Jul 6, 2024. It is now read-only.
generated from peterleiva/create-graphql-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
148 lines (148 loc) · 4.52 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "community-server",
"version": "0.4.0",
"description": "Community is a forum application, also known as community, which connects people around a discussion topic to help each other, this is the server module, which bootstrap the GraphQL API",
"private": true,
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/pherval/community-server.git"
},
"keywords": [
"community",
"forum",
"GraphQL",
"web-server",
"api",
"typescript"
],
"author": "Peter <npmjs@peter.dev.br>",
"license": "MIT",
"engines": {
"node": "16"
},
"scripts": {
"start": "node .",
"build": "scripts/build.sh -e production",
"build:analyzer": "npm run build -- analyzer",
"dev": "concurrently --raw \"npm:codegen -- --watch\" \"scripts/build.sh -w -e development\"",
"console": "ts-node --project tsconfig.json -r tsconfig-paths/register scripts/console.ts",
"lint": "eslint .",
"typecheck": "tsc --noEmit --project src/tsconfig.app.json",
"format": "npm run prettier -- --write",
"format:check": "npm run prettier -- --check",
"prettier": "prettier --ignore-path .gitignore \".\"",
"test": "jest --maxWorkers 4",
"test:watch": "npm t -- --watch",
"test:app": "npm t -- --config src/test/jest.config.js",
"test:e2e": "npm t -- --config e2e/jest.config.js",
"test:e2e:watch": "npm run test:e2e -- --watch",
"prepare": "is-ci || concurrently --raw \"husky install\" \"scripts/build.sh\"",
"clean": "rimraf dist tmp",
"codegen": "graphql-codegen --config codegen.yml"
},
"bugs": {
"url": "https://github.com/pherval/community-server/issues"
},
"homepage": "https://github.com/pherval/community-server#readme",
"devDependencies": {
"@apollo/client": "^3.5.6",
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.9",
"@graphql-codegen/cli": "2.6.2",
"@graphql-codegen/introspection": "2.1.1",
"@graphql-codegen/typescript": "2.4.7",
"@graphql-codegen/typescript-resolvers": "2.5.4",
"@tsconfig/node16": "^1.0.2",
"@types/compression": "^1.7.0",
"@types/core-js": "^2.5.4",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.12",
"@types/http-errors": "^1.8.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.4.12",
"@types/pino-http": "^5.4.1",
"@types/pino-multi-stream": "^5.1.2",
"@types/sprintf-js": "^1.1.2",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-loader": "^8.2.2",
"concurrently": "^6.2.0",
"core-js": "^3.16.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-webpack": "^0.13.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-json": "^3.0.0",
"eslint-plugin-markdown": "^2.2.0",
"fishery": "^2.1.0",
"fork-ts-checker-webpack-plugin": "^6.2.10",
"husky": "^6.0.0",
"is-ci": "^3.0.0",
"jest": "^27.0.6",
"jest-extended": "^1.2.0",
"jest-matcher-utils": "^27.4.2",
"jest-transform-graphql": "^2.1.0",
"jest-watch-select-projects": "^2.0.0",
"jest-watch-typeahead": "^0.6.4",
"lint-staged": "^11.0.0",
"mongodb-memory-server": "^8.0.4",
"nodemon-webpack-plugin": "^4.5.2",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"supertest": "^6.1.6",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.5",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.3.5",
"webpack": "^5.38.1",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^4.7.0",
"webpack-config-organizer": "^0.3.1",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/graphql-modules-preset": "^2.3.7",
"@graphql-tools/schema": "^8.3.1",
"@sentry/node": "^6.16.1",
"@sentry/tracing": "^6.16.1",
"address": "^1.1.2",
"apollo-server-core": "^3.5.0",
"apollo-server-express": "^3.5.0",
"apollo-server-plugin-base": "^3.4.0",
"casual": "^1.6.2",
"chalk": "^4.1.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-fetch": "^3.1.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"graphql": "^15.8.0",
"graphql-scalars": "^1.13.6",
"graphql-tag": "^2.12.6",
"helmet": "^4.6.0",
"http-errors": "^1.8.1",
"mongoose": "^6.0.13",
"mongoose-autopopulate": "^0.16.0",
"node-environment": "^0.5.1",
"pino": "^7.5.1",
"pino-http": "^5.7.0",
"pino-multi-stream": "^5.3.0",
"pino-pretty": "^6.0.0",
"pino-tee": "^0.3.0",
"ramda": "^0.28.0",
"sprintf-js": "^1.0.3"
},
"lint-staged": {
"*": [
"eslint --cache",
"prettier --write --ignore-unknown"
]
},
"webpack-config-organizer": {
"base": "./configs/webpack"
}
}