-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.67 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 3.67 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
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
{
"name": "graphql-ts-boilerplate",
"version": "1.0.0",
"description": "graphql-ts-boilerplate",
"main": "src/index.ts",
"scripts": {
"test": "export NODE_ENV=test;NODE_PATH=src/ ts-mocha --timeout 10000 -p ./tsconfig.json src/**/*test.ts --exit",
"test1": "export NODE_ENV=test;NODE_PATH=src/ ts-mocha --timeout 10000 -p ./tsconfig.json src/resolvers/app/auth/test.ts --exit",
"build": "tsc -p .",
"start": "NODE_PATH=src/ nodemon --exec ts-node src/index.ts",
"on": "NODE_PATH=dist/ node dist/index.js",
"gen-docs": "rm -rf docs && NODE_PATH=src/ pm2 start --interpreter ./node_modules/.bin/ts-node src/index.ts && sleep 5 && graphdoc -e http://localhost:4000/api -o ./docs; pm2 delete all",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t ${CODECOV_TOKEN}",
"coverage": "export NODE_ENV=test;nyc --reporter=html yarn test",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"deploy": "ts-node deploy.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pukuba/graphql-ts-boilerplate.git"
},
"keywords": [
"boilerplate"
],
"author": "pukuba",
"license": "MIT",
"bugs": {
"url": "https://github.com/pukuba/graphql-ts-boilerplate/issues"
},
"homepage": "https://github.com/pukuba/graphql-ts-boilerplate#readme",
"dependencies": {
"@2fd/graphdoc": "^2.4.0",
"@graphql-tools/load-files": "^6.3.2",
"@graphql-tools/merge": "^6.2.14",
"@graphql-tools/schema": "^7.1.5",
"@types/aws-sdk": "^2.7.0",
"@types/bcryptjs": "^2.4.2",
"@types/crypto-js": "^4.0.1",
"@types/graphql-upload": "^8.0.5",
"@types/jsonwebtoken": "^8.5.2",
"@types/mime-types": "^2.1.0",
"@types/node-fetch": "^2.5.10",
"@types/redis": "^2.8.30",
"@types/supertest": "^2.0.11",
"apollo-server": "^2.25.2",
"apollo-server-express": "^2.25.2",
"aws-sdk": "^2.938.0",
"axios": "^0.23.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"coveralls": "^3.1.0",
"crypto-js": "^4.0.0",
"crypto-random-string": "^3.0.0",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"firebase-admin": "^10.0.0",
"fs": "0.0.1-security",
"get-audio-duration": "^2.0.3",
"graphql-depth-limit": "^1.1.0",
"graphql-middleware": "^6.0.10",
"graphql-playground-middleware-express": "^1.7.22",
"graphql-query-complexity": "^0.8.1",
"graphql-scalars": "^1.10.0",
"graphql-shield": "^7.5.0",
"graphql-voyager": "^1.0.0-rc.31",
"hangul-js": "^0.2.6",
"http": "0.0.1-security",
"iamport": "^0.3.4",
"jsonwebtoken": "^8.5.1",
"mime-types": "^2.1.30",
"mocha": "^8.2.1",
"mongodb": "^3.6.3",
"node-fetch": "^2.6.1",
"node-ssh": "^11.1.1",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"path": "^0.12.7",
"pm2": "^5.1.0",
"redis": "^3.1.2",
"supertest": "^6.1.4",
"ts-mocha": "^8.0.0",
"ts-node": "^10.0.0",
"typescript": "^4.1.3"
},
"resolutions": {
"**/**/fs-capacitor": "^6.2.0",
"graphql-upload": "^11.0.0",
"@2fd/graphdoc/**/graphql": "15.5.0"
},
"devDependencies": {
"@types/graphql-depth-limit": "^1.1.2",
"@types/mocha": "^8.2.0",
"@types/mongodb": "^3.6.3",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0"
}
}