forked from mbzuze/prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.88 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
53
54
55
56
57
58
59
60
61
{
"name": "prototype",
"version": "5.1.0",
"description": "Typescript framework for general purpose remote monitoring/control. Built using react, mongodb, express and socketio.",
"main": "index.js",
"scripts": {
"server": "cd build && node --require source-map-support/register ./main.js",
"test": "mocha --exit ./build/server/tests/tests.js",
"bench": "node ./build/tests/benchmark.js",
"build": "tsc --sourcemap --lib es2015 ./server/main.ts ./server/tests/tests.ts --outDir ./build",
"watch": "tsc --sourcemap --w --lib es2015 ./server/main.ts ./server/tests/tests.ts --outDir ./build",
"watchserver": "nodemon build/server/main.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.0",
"@types/lodash": "^4.14.136",
"@types/mocha": "^5.2.7",
"@types/mongoose": "^5.5.12",
"@types/node": "^12.7.1",
"@types/nodemailer": "^6.2.1",
"@types/request": "^2.48.2",
"@types/socket.io": "^2.1.2",
"@types/winston": "^2.4.4",
"@types/ws": "^6.0.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"crc": "^3.8.0",
"express": "^4.17.1",
"express-session": "^1.16.2",
"geoip-lite": "^1.3.7",
"isomorphic-ws": "^4.0.1",
"lodash": "^4.17.15",
"mocha": "^6.2.0",
"mongojs": "^2.6.0",
"mongoose": "^5.6.9",
"mqtt": "^3.0.0",
"nodemailer": "^6.3.0",
"react": "^16.9.0",
"react-router-dom": "^5.1.2",
"request": "^2.88.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0",
"source-map-support": "^0.5.13",
"typescript": "^3.5.3",
"vm2": "^3.8.3",
"winston": "^3.2.1",
"ws": "^7.1.2",
"ws-server-wrapper": "^1.5.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"devDependencies": {
"@types/react": "^16.8.25",
"@types/react-dom": "^16.8.5"
}
}