-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·34 lines (34 loc) · 957 Bytes
/
package.json
File metadata and controls
executable file
·34 lines (34 loc) · 957 Bytes
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
{
"name": "cloudrm-server",
"version": "0.0.1",
"description": "CloudRM server",
"main": "src/index.js",
"scripts": {
"prestart": "git pull && npm install",
"start": "nodemon src/index.js --exec babel-node",
"debug": "nodemon src/index.js --exec babel-node --inspect=9222",
"build": "babel src -d dist",
"serve": "node dist/index.js",
"test": "mocha --compilers js:babel-register"
},
"author": "Bartosz Jakubowiak <bartosz@jakubowiak.pl>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-2": "^6.11.0",
"babel-register": "^6.11.6",
"babel-root-import": "^4.1.5",
"mocha": "^3.0.1",
"nodemon": "^1.10.0"
},
"dependencies": {
"is_js": "^0.9.0",
"keypress": "^0.2.1",
"request": "^2.81.0",
"rpio": "^0.9.19",
"socket.io-client": "^1.7.2",
"urlsafe-base64": "^1.0.0",
"rxjs": "^5.5.6"
}
}