-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 884 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 884 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
{
"name": "p2p-chat",
"version": "1.0.0",
"description": "Real time react p2p chat",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "mkdir -p build; browserify -t [ babelify --presets [ es2015 react ] ] -o build/application.js src/index.js",
"develop": "mkdir -p build; watchify -t [ babelify --presets [ es2015 react ] ] -o build/application.js --debug src/index.js",
"presentation": "mkdir -p build; cleaver --output build/presentation.html README.md"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"cleaver": "^0.8.2",
"watchify": "^3.7.0"
},
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7",
"simple-peer": "^6.0.2"
}
}