-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.24 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
{
"name": "diot",
"version": "0.0.1",
"description": "Decentralized platform for IoT",
"main": "src/app.js",
"repository": "https://github.com/diotHQ/diot",
"author": "Jackie Meng <mengjq08@gmail.com>",
"license": "MIT",
"scripts": {
"start": "nodemon src/app.js --exec babel-node",
"build": "babel src -d dist",
"serve": "node dist/app.js",
"test": "mocha --compilers js:babel-register"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^4.11.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-markdown": "^1.0.0-beta.6",
"mocha": "^4.0.1",
"nodemon": "^1.12.1"
},
"dependencies": {
"array.prototype.find": "^2.0.4",
"array.prototype.findindex": "^2.0.2",
"async": "^2.6.0",
"body-parser": "^1.18.2",
"colors": "^1.1.2",
"commander": "^2.11.0",
"config": "^1.28.1",
"cors": "^2.8.4",
"daemon": "^1.1.0",
"express": "^4.16.2",
"ip": "^1.1.5",
"lodash": "^4.17.4",
"reqeust": "^2.81.1",
"socket.io": "^2.0.4",
"strftime": "^0.10.0",
"toml": "^2.3.3"
}
}