generated from TylerGarlick/template-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.01 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
{
"name": "typescript-apollo-server",
"private": true,
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"typings": "dist/index.d.js",
"scripts": {
"postinstall": "npx typesync || :",
"start": "npx ts-node -r dotenv/config ./src",
"start:dev": "npx ts-node-dev -r dotenv/config ./src",
"test": "npx jest",
"prebuild": "npx del dist",
"build": "npx tsc",
"docker:build": "docker build . -t typescript-apollo-server",
"docker:run": "docker run -p 4000:4000 -d typescript-apollo-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TylerGarlick/typescript-apollo-server.git"
},
"keywords": [
""
],
"author": {
"name": "Tyler Garlick",
"email": "tjgarlick@gmail.com",
"url": "https://github.com/tylergarlick"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/TylerGarlick/template-apollo-server/issues"
},
"homepage": "https://github.com/TylerGarlick/template-apollo-server#readme",
"devDependencies": {
"@apollo/rover": "^0.1.8",
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^26.0.24",
"@types/node": "^14.17.5",
"@types/prettier": "^2.3.2",
"del-cli": "^3.0.1",
"jest": "^26.6.3",
"np": "^7.5.0",
"prettier": "^2.3.2",
"release-it": "^14.10.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5",
"typesync": "^0.8.0"
},
"prettier": {
"semi": false,
"singleQuote": true,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "all",
"arrowParens": "always"
},
"dependencies": {
"@apollo/federation": "^0.26.0",
"@graphql-tools/graphql-file-loader": "^6.2.7",
"@graphql-tools/load": "^6.2.8",
"@graphql-tools/merge": "^6.2.14",
"@graphql-tools/mock": "^8.1.3",
"@graphql-tools/schema": "^7.1.5",
"apollo-server": "^2.25.2",
"dotenv": "^8.6.0",
"graphql": "^15.5.1",
"graphql-shield": "^7.5.0",
"read-pkg": "^6.0.0",
"type-fest": "^0.20.2"
}
}