Files
mattermost/web/react/package.json
Christopher Speller 395e5cd854 Removing js map from react bootstrap to make safari happy.
Adding babel runtime to build process because Safari hasen't gotten with
the program yet.
2015-09-16 10:20:17 -04:00

38 lines
899 B
JSON

{
"name": "mattermost",
"version": "0.0.1",
"private": true,
"dependencies": {
"autolinker": "0.18.1",
"flux": "2.1.1",
"keymirror": "0.1.1",
"object-assign": "3.0.0",
"react-zeroclipboard-mixin": "0.1.0",
"twemoji": "1.4.1",
"babel-runtime": "5.8.24"
},
"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": "."
}
}