forked from stemmlerjs/stemmlerjs-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 829 Bytes
/
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
{
"name": "stemmerjs-graph",
"version": "1.0.0",
"description": "My personal GraphQL graph. So far, it can display stats about my Spotify, etc.",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "nodemon",
"get-refresh-token": "ts-node scripts/get-refresh-token.ts",
"codegen": "graphql-codegen --config codegen.yml"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@graphql-codegen/cli": "^1.12.2",
"nodemon": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.7.5",
"@graphql-codegen/typescript": "1.12.2",
"@graphql-codegen/typescript-resolvers": "1.12.2",
"@graphql-codegen/introspection": "1.12.2"
},
"dependencies": {
"apollo-server": "^2.10.1",
"apollo-server-lambda": "^2.10.1",
"axios": "^0.19.2",
"dotenv": "^8.2.0"
}
}