-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.69 KB
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
{
"name": "example-nodejs-graphql",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --inspect --watch -- ./src/index.ts",
"compile": "tsc",
"bundle": "esbuild ./src/index.ts --platform=node --bundle --outfile=./dist/index.js",
"build": "tsc && esbuild ./src/index.ts --platform=node --bundle --outfile=./dist/index.js",
"start": "node --es-module-specifier-resolution=node ./dist/index.js"
},
"author": "pokers",
"license": "ISC",
"dependencies": {
"@graphql-tools/schema": "^8.3.11",
"@graphql-tools/utils": "^8.6.10",
"apollo-server-express": "^3.7.0",
"body-parser-graphql": "^1.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"graphql": "^16.5.0",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"promise-mysql": "^5.2.0"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/graphql": "^14.5.0",
"@types/http-errors": "^1.8.2",
"@types/jest": "^27.5.1",
"@types/knex": "^0.16.1",
"@types/lodash": "^4.14.182",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.33",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"concurrently": "^7.2.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"graphql-import": "^1.0.2",
"graphql-import-node": "0.0.5",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"supertest": "^6.2.3",
"ts-jest": "^28.0.2"
}
}