-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 819 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 819 Bytes
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
{
"name": "apollo-server-example",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "concurrently \"tsc -w\" \"nodemon dist/index.js\"",
"test": "echo \"Error: no test specified\" && exit 1",
"generate": "graphql-codegen --config codegen.yml"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-server-express": "^2.16.0",
"express": "^4.17.1",
"uuidv4": "^6.2.0"
},
"devDependencies": {
"@graphql-codegen/add": "^1.17.0",
"@graphql-codegen/cli": "1.17.0",
"@graphql-codegen/introspection": "1.17.0",
"@graphql-codegen/typescript": "1.17.0",
"@graphql-codegen/typescript-resolvers": "1.17.0",
"concurrently": "^5.2.0",
"nodemon": "^2.0.4",
"typescript": "^3.9.7"
}
}