-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·34 lines (34 loc) · 984 Bytes
/
package.json
File metadata and controls
executable file
·34 lines (34 loc) · 984 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
30
31
32
33
34
{
"name": "react-chatv2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"stylus": "stylus -u nib -c -o public src/client/stylus/style.styl",
"build": "NODE_ENV=production browserify -t babelify -g uglifyify src/client/app.js > public/bundle.js",
"server": "babel-node src/server/index.js",
"start": "npm run stylus && npm run build && npm run server"
},
"author": "@Manuel_Galindez",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"express": "^4.14.0",
"nib": "^1.1.2",
"react-engine": "^4.1.0",
"stylus": "^0.54.5",
"uglifyify": "^3.0.4"
},
"dependencies": {
"react": "^15.3.2",
"react-addons-css-transition-group": "^15.3.2",
"react-dom": "^15.3.2",
"socket.io": "^1.5.0",
"socket.io-client": "^1.5.0",
"uid": "0.0.2"
}
}