-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 901 Bytes
/
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
{
"name": "SignalingServer",
"version": "0.0.1",
"description": "Signaling server",
"repository": "https://github.com/mrwillis/es6-signaler.git",
"license": "MIT",
"scripts": {
"start": "nodemon %NODE_DEBUG_OPTION% src/index.js --exec babel-node",
"build": "babel src -d dist ",
"serve": "node dist/index.js"
},
"dependencies": {
"body-parser": "^1.17.2",
"express": "^4.15.3",
"socket.io": "^2.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.5.0",
"babel-register": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"nodemon": "^1.11.0"
}
}