forked from bosch-io/iot-things-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.66 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "desired-synchronizer",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts && npm run tslint",
"serve": "node dist",
"watch-node": "nodemon dist",
"watch": "concurrently -k -p \"[{name}]\" -n \"typeScript,node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run watch-node\"",
"test": "jest --forceExit --coverage --verbose",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"typeScript,node\" -c \"yellow.bold,cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@jest/core": "^25.2.7",
"@jest/fake-timers": "^25.2.6",
"@jest/transform": "^25.2.6",
"@types/node": "~12.0.12",
"@types/request-promise-native": "~1.0.16",
"@types/uuid": "~3.4.5",
"@types/ws": "~6.0.1",
"acorn": "^7.1.1",
"anymatch": "^3.1.1",
"base": "^3.0.0",
"braces": "^3.0.2",
"cache-base": "^4.0.0",
"chokidar": "^3.3.1",
"class-utils": "^0.3.6",
"expand-brackets": "^4.0.0",
"extglob": "^3.0.0",
"fast-json-patch": "~2.1.0",
"fill-range": "^7.0.1",
"has-value": "^2.0.2",
"has-values": "^2.0.1",
"https-proxy-agent": "~2.2.1",
"is-accessor-descriptor": "^3.0.1",
"is-data-descriptor": "^2.0.0",
"is-descriptor": "^3.0.0",
"is-number": "^7.0.0",
"jest-config": "^25.2.7",
"jest-haste-map": "^25.2.6",
"jest-message-util": "^25.2.6",
"jest-snapshot": "^25.2.7",
"kind-of": "^6.0.3",
"lodash": "^4.17.15",
"micromatch": "^4.0.2",
"minimist": "^1.2.5",
"mkdirp": "^1.0.3",
"nanomatch": "^1.2.13",
"object-copy": "^1.0.0",
"rc": "^1.2.8",
"readdirp": "^3.4.0",
"request": "^2.88.0",
"request-promise-native": "~1.0.7",
"sane": "^4.1.0",
"snapdragon": "^0.12.0",
"snapdragon-node": "^3.0.0",
"snapdragon-util": "^5.0.1",
"sshpk": "~1.16.1",
"static-extend": "^0.1.2",
"to-object-path": "^0.3.0",
"to-regex-range": "^5.0.1",
"uuid": "~3.3.2",
"ws": "~7.0.1"
},
"devDependencies": {
"@types/jest": "~24.0.15",
"@types/supertest": "~2.0.8",
"concurrently": "~4.1.1",
"jest": "^24.9.0",
"nodemon": "^1.19.4",
"supertest": "~4.0.2",
"tslint": "~5.18.0",
"tslint-config-standard": "~8.0.1",
"typescript": "~3.5.2"
},
"engines": {
"npm": "^5.4.0",
"node": "^8.8.0"
}
}