-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 894 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
{
"name": "HeyTechRestServer",
"version": "1.0.5",
"description": "RESTful Service to control heytech shutter",
"main": "index.js",
"scripts": {
"telnet": "nodemon heytech/service/telnet.js",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"start": "npm run build && node dist/server.js",
"localtest": "npm run build && node dist/heytech/service/test.js"
},
"keywords": [
"RESTful",
"HeyTech"
],
"author": "Asngar Schulte",
"license": "",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"nodemon": "^1.11.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"body-parser": "^1.18.3",
"config": "^2.0.1",
"express": "^4.16.3",
"lodash": "^4.17.13",
"telnet-rxjs": "^2.1.0",
"yargs": "^12.0.2"
}
}