-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·63 lines (63 loc) · 1.73 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
59
60
61
62
63
{
"name": "domusto-server",
"version": "0.0.1",
"description": "Node home automation rest API for RPI",
"main": "build/server.js",
"scripts": {
"assets": "cp -r ./src/assets ./build",
"test": "npx mocha --timeout 2000 --require ts-node/register --ui mocha-typescript ./**/*.spec.ts",
"start": "npx tsc && node ./build/app.js --trace-warnings",
"dev": "mkdir -p logs && npm run assets && npx tsc-watch -p tsconfig.json --onSuccess \"node ./build/app.js --trace-warnings\""
},
"author": "Bas van Dijk",
"license": "UNLICENSED",
"dependencies": {
"express": "^4.15.3",
"fetch": "^1.1.0",
"fs": "0.0.1-security",
"jsonfile": "^4.0.0",
"prettyjson": "^1.2.1",
"rxjs": "^5.5.6",
"socket.io": "^2.0.4"
},
"devDependencies": {
"@types/express": "^4.11.0",
"@types/mocha": "^2.2.45",
"@types/node": "^8.5.2",
"@types/rx": "^4.1.1",
"@types/should": "^13.0.0",
"@types/sinon": "^4.1.2",
"@types/socket.io": "^1.4.31",
"chai": "^4.1.2",
"mocha": "^4.1.0",
"mocha-typescript": "^1.1.12",
"mock-require": "^2.0.2",
"nodemon": "^1.14.7",
"proxyquire": "^1.8.0",
"should": "^13.2.0",
"sinon": "^4.1.3",
"source-map-support": "^0.5.0",
"ts-node": "^4.1.0",
"tsc-watch": "^1.0.6",
"tslint": "^5.8.0",
"tslint-eslint-rules": "^4.1.1",
"typescript": "^2.6.2"
},
"directories": {
"doc": "doc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/basvdijk/domusto-server.git"
},
"keywords": [
"domusto",
"home",
"automation",
"domotica"
],
"bugs": {
"url": "https://github.com/basvdijk/domusto-server/issues"
},
"homepage": "https://github.com/basvdijk/domusto-server#readme"
}