-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 971 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
32
{
"name": "Chat-App",
"version": "1.0.0",
"description": "Chat Application",
"main": "lib/server.js",
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js src --out-dir lib --plugins transform-react-jsx --presets es2015",
"bundle": "./node_modules/browserify/bin/cmd.js lib/client.js -o public/js/bundle.js",
"start": "npm run build && npm run bundle && node lib/server.js"
},
"author": "Vance Lucas",
"license": "BSD",
"dependencies": {
"ejs": "^2.3.4",
"express": "^4.13.3",
"fs": "0.0.1-security",
"http": "0.0.0",
"react": "^0.14.2",
"react-dom": "^0.14.2",
"socket.io": "^2.0.1",
"babel-cli": "^6.1.2",
"babel-plugin-transform-react-jsx": "^6.0.18",
"babel-preset-es2015": "^6.1.2",
"browserify": "^12.0.1"
},
"devDependencies": {
"browserify": "^12.0.1",
"babel-cli": "^6.1.2",
"babel-plugin-transform-react-jsx": "^6.0.18",
"babel-preset-es2015": "^6.1.2"
}
}