-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.67 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.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
{
"name": "graphql-demo-server",
"version": "1.0.0",
"description": "",
"main": "./src/server.ts",
"scripts": {
"generate": "npm run generate:graphql && npm run generate:textile",
"generate:graphql": "graphql-codegen",
"generate:textile": "ts-node -r dotenv/config ./server/scripts/create-database.ts",
"start": "node dist/index.js",
"dev": "ts-node -r dotenv/config ./server/index.ts",
"dev:watch": "nodemon",
"build": " npm run generate:textile && npm run clean && tsc && npm run copy-schema",
"clean": "rm -rf ./dist",
"copy-schema": "cp ./server/graphql/schema.graphql ./dist/graphql/schema.graphql"
},
"dependencies": {
"@textile/hub": "^6.0.2",
"apollo-server": "^2.21.0",
"change-case": "^4.1.2",
"dotenv": "^8.2.0",
"graphql": "^15.5.0",
"graphql-2-json-schema": "git://github.com/phibar/graphql-to-json-schema.git#textile",
"graphql-import-node": "^0.0.4",
"json-schema": "^0.3.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.20.1",
"@graphql-codegen/typescript": "^1.21.0",
"@graphql-codegen/typescript-operations": "^1.17.14",
"@graphql-codegen/typescript-resolvers": "^1.18.2",
"@types/graphql": "^14.5.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.31",
"@types/uuid": "^8.3.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phibar/graphql-demo-server.git"
},
"author": "",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/phibar/graphql-demo-server/issues"
},
"homepage": "https://github.com/phibar/graphql-demo-server#readme"
}