Files
optolith-client/package.json
T
Lukas Obermann 7c229853e7 Updated babel, fixing data flow in ListStore
Transferring all Actions to ListStore to regain unidirectional data flow for all stores. Other Stores only will store section-specific data e.g. filters.
2016-11-02 02:23:02 +01:00

57 lines
1.8 KiB
JSON

{
"name": "cha5app",
"version": "1.0.0",
"description": "A generator for heroes for the P&P-RPG 'The Dark Eye'",
"main": "js/AppBootstrap.js",
"directories": {
"test": "test"
},
"dependencies": {
"babel-runtime": "^6.18.0",
"classnames": "^2.2.5",
"flux": "^2.1.1",
"jquery": "^2.2.4",
"react": "^15.3.2",
"react-addons-update": "^15.3.2",
"react-gemini-scrollbar": "^2.1.5",
"react-progress-arc": "^1.0.7"
},
"devDependencies": {
"babel-core": "^6.18.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^16.0.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-do-expressions": "^6.8.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"eslint": "^2.13.1",
"eslint-plugin-react": "^5.2.2",
"gulp": "^3.9.1",
"gulp-streamify": "^1.0.2",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"jest-cli": "^16.0.2",
"react-test-renderer": "^15.3.2",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"scripts": {
"watch": "watchify -t [babelify] js/AppBootstrap.js -o dist/bundle.js -v",
"build": "browserify -t [babelify] js/AppBootstrap.js -o dist/bundle.js",
"build-prod": "browserify -t [babelify] js/AppBootstrap.js | uglifyjs -mc > dist/bundle.min.js",
"test": "jest"
},
"author": "Lukas Obermann",
"license": "ISC",
"repository": {}
}