-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.09 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "wat",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "standard",
"prestart": "npm run build",
"start": "DEBUG=socket.io:*,wat:* node index",
"prebuild": "node lib/cat",
"build": "browserify app/index.js -o public/bundle.js && browserify app/client.js -o public/client.js",
"watch": "watch-run -p 'app/**' npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/conc-at/wat.git"
},
"author": "Christoph Witzko <npm@christophwitzko.com> (http://christophwitzko.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/conc-at/wat/issues"
},
"homepage": "https://github.com/conc-at/wat",
"dependencies": {
"debug": "^2.1.1",
"express": "^4.12.0",
"lodash": "^4.9.0",
"react": "^0.12.2",
"socket.io": "^1.3.4",
"socket.io-client": "^1.3.4"
},
"devDependencies": {
"babel": "^4.5.4",
"babelify": "^5.0.3",
"browserify": "^9.0.3",
"standard": "*",
"watch-run": "^1.2.1"
},
"browserify": {
"transform": [
"babelify"
]
}
}