-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.41 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
{
"name": "parse-server-back4app-graphql-boilerplate",
"version": "0.0.1",
"description": "configure GraphQL project to deploy as a cloud code to back4app",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"schema-json": "apollo-codegen introspect-schema src/cloud/graphql/schema.graphql --output build/schema.json",
"schema2ts": "apollo-codegen generate src/cloud/graphql/dummy.graphql --schema build/schema.json --target typescript --output build/operation-result-types.ts",
"schema-typings": "npm run schema-json && npm run schema2ts",
"build": "npm run schema-typings && tsc",
"deploy": "tsc && cp src/cloud/graphql/schema.graphql build/cloud/graphql/schema.graphql.jade && cd build && b4a deploy"
},
"author": "Szymon Stasik",
"devDependencies": {
"@parse-graphql/schema": "^0.4.1",
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.4",
"@types/express": "^4.11.1",
"@types/graphql": "^0.13.1",
"@types/parse": "^1.11.0",
"apollo-codegen": "^0.19.1",
"apollo-server-express": "^1.3.6",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"graphql": "0.12.3",
"graphql-tools": "^3.0.1",
"parse-express-cookie-session": "0.0.3",
"subscriptions-transport-ws": "^0.9.9",
"typescript": "^2.8.3",
"underscore": "^1.9.0"
},
"dependencies": {
"parse": "^1.11.1"
}
}