-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.45 KB
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
{
"name": "prototype",
"version": "5.0.33",
"description": "Typescrypt based IoT framework for general purpose remote monitoring/control.",
"main": "src/main.js",
"scripts": {
"start": "node ./build/main.js",
"test": "mocha ./build/tests/tests.js",
"tests": "node ./build/tests.js",
"build": "tsc --lib es2015 ./src/main.ts ./src/tests/tests.ts --outDir ./build",
"buildwatch": "tsc --sourcemap --w --lib es2015 ./src/main.ts ./src/tests/tests.ts --outDir ./build",
"build-clean": "rmdir build /s /q && tsc",
"debug": "cd build && nodemon --inspect main.js"
},
"repository": {
"type": "git",
"url": "ssh://git@github.com:IoT-nxt/prototype.git"
},
"keywords": [
"iot",
"iotnxt",
"rpi",
"node",
"ts"
],
"author": "Rouan van der Ende",
"license": "ISC",
"dependencies": {
"@types/express": "^4.16.0",
"@types/geoip-lite": "^1.1.29",
"@types/lodash": "^4.14.116",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.3",
"compression": "^1.7.3",
"cookie-parser": "^1.4.3",
"discord.js": "^11.4.2",
"express": "^4.16.3",
"geoip-lite": "^1.3.2",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"mongojs": "^2.6.0",
"mqtt": "^2.18.8",
"nodemailer": "^4.6.8",
"react-modal": "^3.8.1",
"request": "^2.88.0",
"socket.io": "^2.1.1",
"source-map-support": "^0.5.9",
"typescript": "^3.1.3",
"vm2": "^3.6.3"
},
"devDependencies": {}
}