-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.51 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "congenial-giggle",
"version": "1.0.0",
"description": "Multiple room chat with live typing",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node ./node_modules/browserify/bin/cmd.js src/client/index.js > ./src/public/bundle.js",
"start": "nodemon src/index.js",
"watch": "node ./node_modules/watchify/bin/cmd.js src/client/index.js -o ./src/public/bundle.js -u bufferutil -u utf-8-validate",
"pre-commit": "node ./node_modules/standard/bin/cmd.js src/**/**.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/einsteinreloaded/congenial-giggle.git"
},
"keywords": [
"multi",
"room",
"chat"
],
"author": "anish",
"license": "ISC",
"bugs": {
"url": "https://github.com/einsteinreloaded/congenial-giggle/issues"
},
"homepage": "https://github.com/einsteinreloaded/congenial-giggle#readme",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"cookie-parser": "^1.4.3",
"express": "^4.15.4",
"jsonwebtoken": "^7.4.3",
"socket.io": "^2.0.3",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.4.0",
"husky": "^0.14.3",
"nodemon": "^1.11.0",
"standard": "^10.0.3",
"watchify": "^3.9.0"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
}
}