-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 872 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 872 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
{
"name": "ObjectUpdates",
"version": "0.0.0",
"description": "A simple application for updating object properties through websockets",
"main": "./server/app.js",
"scripts": {
"build": "babel ./client --out-file ./hosted/compiled.js",
"watch": "babel --watch ./client --out-file ./hosted/compiled.js",
"nodemon": "nodemon --watch ./server ./server/app.js",
"start": "node ./server/app.js",
"pretest": "eslint ./server --fix",
"test": "echo \"Tests complete\""
},
"author": "Cody Van De Mark",
"license": "ISC",
"dependencies": {
"express": "^4.15.2",
"socket.io": "^1.4.8",
"xxhashjs": "^0.2.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-env": "^1.1.8",
"eslint": "^3.18.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"nodemon": "^1.11.0"
}
}