-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 989 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
30
31
32
33
{
"name": "graphql-server-file-upload-example",
"version": "1.0.0",
"scripts": {
"start": "dotenv -- nodemon -x ts-node -e ts,graphql src/index.ts",
"debug": "dotenv -- nodemon -x 'ts-node --inspect' -e ts,graphql src/index.ts",
"playground": "dotenv -- graphql playground",
"bind": "graphql prepare",
"build": "rm -rf dist && tsc",
"deploy": "now --public --dotenv .env.prod && now alias && now rm --yes --safe graphql-file",
"now-start": "node dist"
},
"dependencies": {
"aws-sdk": "^2.167.0",
"express": "^4.16.2",
"graphql": "^0.12.0",
"graphql-import": "^0.1.5",
"graphql-yoga": "^1.1.4",
"mime-types": "^2.1.17",
"multiparty": "^4.1.3",
"prisma-binding": "^1.3.8",
"uuid": "^3.1.0"
},
"devDependencies": {
"dotenv-cli": "^1.4.0",
"graphql-cli": "^2.0.5",
"graphql-cli-prepare": "^1.4.11",
"nodemon": "^1.12.5",
"ts-node": "^3.3.0",
"typescript": "^2.6.2"
},
"license": "MIT"
}