-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.81 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "greenpi-backend",
"version": "3.0.4",
"description": "Save measures and configuration of greenPi project",
"main": "dist/src/index.js",
"scripts": {
"compile": "rm -rf dist; tsc",
"test": "yarn compile && mocha --recursive --exit ./dist/test",
"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/greenpi-backend",
"bugs": {
"url": "https://github.com/gabrielmdc/greenpi-backend/issues",
"email": "gmdcwork@gmail.com"
},
"repository": {
"type": "git",
"url": "github.com:gabrielmdc/greenpi-backend.git"
},
"license": "MIT",
"dependencies": {
"bcrypt": "^3.0.3",
"express-graphql": "^0.9.0",
"google-auth-library": "^2.0.1",
"graphql": "^14.5.8",
"jsonwebtoken": "^8.4.0",
"mongoose": "^5.7.5",
"restify": "^7.2.1",
"restify-errors": "^6.1.1",
"rxjs": "^6.3.3",
"rxjs-compat": "^6.3.3",
"socket.io": "^2.2.0"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.1.6",
"@types/chai-as-promised": "0.0.31",
"@types/jsonwebtoken": "^8.3.0",
"@types/mocha": "^2.2.48",
"@types/mongoose": "^5.5.29",
"@types/node": "^12.7.12",
"@types/restify": "^5.0.9",
"@types/restify-cors-middleware": "^1.0.1",
"@types/restify-errors": "^4.3.3",
"@types/socket.io": "^1.4.38",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^5.2.0",
"nodemon": "^1.19.4",
"typescript": "^3.6"
}
}