-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 805 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 805 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
{
"name": "simple_ws",
"version": "0.0.0",
"description": "A very simple web RTC chat client",
"main": "./src/server.js",
"scripts": {
"build": "babel ./client --out-file ./hosted/compiled.js",
"watch": "babel --watch ./client --out-file ./hosted/compiled.js",
"nodemon": "nodemon --watch ./server ./server/server.js",
"start": "node ./server/server.js",
"pretest": "eslint ./server --fix",
"test": "echo \"Tests complete\""
},
"author": "Cody Van De Mark",
"license": "ISC",
"dependencies": {
"express": "^4.15.2",
"peer": "^0.2.8"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.1.8",
"eslint": "^3.0.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.10.1",
"nodemon": "^1.11.0"
}
}