mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
47 lines
1022 B
JSON
47 lines
1022 B
JSON
{
|
|
"name": "mattermost",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"dependencies": {
|
|
"autolinker": "0.18.1",
|
|
"babel-runtime": "5.8.24",
|
|
"bootstrap-colorpicker": "2.2.0",
|
|
"flux": "2.1.1",
|
|
"keymirror": "0.1.1",
|
|
"marked": "0.3.5",
|
|
"object-assign": "3.0.0",
|
|
"react-zeroclipboard-mixin": "0.1.0",
|
|
"twemoji": "1.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "11.0.1",
|
|
"envify": "3.4.0",
|
|
"babelify": "6.1.3",
|
|
"uglify-js": "2.4.24",
|
|
"watchify": "3.3.1",
|
|
"eslint": "1.3.1",
|
|
"eslint-plugin-react": "3.3.1"
|
|
},
|
|
"scripts": {
|
|
"start": "watchify --extension=jsx -o ../static/js/bundle.js -v -d ./**/*.jsx",
|
|
"build": "NODE_ENV=production browserify ./**/*.jsx | uglifyjs -c -m --screw-ie8 > ../static/js/bundle.min.js",
|
|
"test": "jest"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
[
|
|
"babelify",
|
|
{
|
|
"optional": [
|
|
"runtime"
|
|
]
|
|
}
|
|
],
|
|
"envify"
|
|
]
|
|
},
|
|
"jest": {
|
|
"rootDir": "."
|
|
}
|
|
}
|