-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.35 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
38
39
40
41
42
{
"name": "zombicide-spawn-backend",
"version": "0.0.5",
"description": "Provide zombicide spawn cards",
"main": "dist/src/index.js",
"scripts": {
"compile": "rm -rf dist; tsc",
"test": "yarn compile && echo 'Tests are not implemented'",
"start": "node ./dist/src/index.js",
"start:prod": "NODE_ENV=production yarn start",
"start:dev": "nodemon -e ts --exec \"tsc && node ./dist/src/index.js\"",
"build": "yarn compile && ./scripts/build-docker-image.sh",
"deploy": "./scripts/deploy-dockerhub-image.sh; ./scripts/deploy-github-image.sh",
"release": "./scripts/incr-version.sh release"
},
"author": "gabrielmdc",
"homepage": "https://github.com/gabrielmdc/zombicide-spawn-backend",
"bugs": {
"url": "https://github.com/gabrielmdc/zombicide-spawn-backend/issues",
"email": "gmdcwork@gmail.com"
},
"repository": {
"type": "git",
"url": "github.com:gabrielmdc/zombicide-spawn-backend.git"
},
"license": "MIT",
"dependencies": {
"express-graphql": "^0.9.0",
"graphql": "^14.5.8",
"graphql-tools": "^4.0.6",
"restify": "^7.2.1",
"restify-errors": "^6.1.1"
},
"devDependencies": {
"@types/node": "^12.7.12",
"@types/restify": "^5.0.9",
"@types/restify-cors-middleware": "^1.0.1",
"@types/restify-errors": "^4.3.3",
"nodemon": "^1.19.4",
"typescript": "^3.6"
}
}