mirror of
https://github.com/element-hq/element-web.git
synced 2024-12-16 20:51:44 +03:00
20 lines
558 B
JSON
20 lines
558 B
JSON
|
{
|
||
|
"name": "matrix-react-example",
|
||
|
"version": "0.0.1",
|
||
|
"description": "Example usage of matrix-react-sdk",
|
||
|
"author": "matrix.org",
|
||
|
"license": "Apache 2",
|
||
|
"devDependencies": {
|
||
|
"browserify": "^10.2.3",
|
||
|
"envify": "^3.4.0",
|
||
|
"matrix-react-sdk": "../",
|
||
|
"reactify": "^1.1.1",
|
||
|
"uglifyify": "^3.0.1",
|
||
|
"watchify": "^3.2.1"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"build": "browserify -t [ envify --NODE_ENV production ] -t reactify -g uglifyify lib/index.jsx -o bundle.js",
|
||
|
"start": "watchify -v -d -t reactify lib/index.jsx -o bundle.js"
|
||
|
}
|
||
|
}
|