-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.16 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": "medrec-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"heroku-postbuild": "babel src --out-dir dist --copy-files",
"dev": "export DEBUG=app:startup;env-cmd -f ./config/development.env nodemon src/index.js --ext js, graphql --exec babel-node",
"prod": "export DEBUG=app:startup;env-cmd -f ./config/production.env nodemon src/index.js --ext js, graphql --exec babel-node",
"test": "echo \"Error: no test specified\" && exit 1",
"get-schema": "graphql get-schema -p prisma"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^1.19.3"
},
"dependencies": {
"@babel/polyfill": "^7.11.5",
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"bcrypt": "^3.0.6",
"debug": "^4.1.1",
"env-cmd": "^10.1.0",
"express": "^4.17.1",
"graphql-cli": "^3.0.14",
"graphql-yoga": "^1.18.3",
"joi": "^17.2.1",
"jsonwebtoken": "^8.5.1",
"merge-graphql-schemas": "^1.7.0",
"prisma-binding": "^2.3.16",
"python-shell": "^1.0.8"
}
}