-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 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
{
"name": "@ajliv/graphql-template",
"version": "1.0.0",
"main": "index.js",
"author": "ajliv <livingston.aj@gmail.com> (https://ajliv.in)",
"license": "MIT",
"private": true,
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json && cpy '**' '!**/*.ts' ../dist/lib --cwd=lib --parents",
"codegen": "graphql-codegen",
"codegen:watch": "graphql-codegen --watch",
"watch": "tsc -w",
"test": "jest"
},
"dependencies": {
"apollo-server-express": "^2.25.0",
"express": "^4.17.1",
"graphql": "^15.5.0",
"joi": "^17.4.0",
"morgan": "^1.10.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@graphql-codegen/add": "^2.0.2",
"@graphql-codegen/cli": "^1.21.5",
"@graphql-codegen/typescript": "^1.22.1",
"@graphql-codegen/typescript-resolvers": "^1.19.2",
"@types/express": "^4.17.12",
"@types/jest": "^26.0.23",
"@types/morgan": "^1.9.2",
"@types/node": "^14.0.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"apollo": "^2.33.4",
"cpy-cli": "^3.1.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"jest": "^27.0.3",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.2",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}