Files
SCM-Manager/scm-ui/ui-webapp/package.json

70 lines
2.6 KiB
JSON

{
"homepage": "/scm",
"name": "@scm-manager/ui-webapp",
"version": "2.0.0-SNAPSHOT",
"private": true,
"main": "dist/ui-webapp.js",
"dependencies": {
"@scm-manager/ui-components": "2.0.0-SNAPSHOT",
"@scm-manager/ui-extensions": "^0.1.2",
"classnames": "^2.2.5",
"history": "^4.10.1",
"i18next": "^11.4.0",
"i18next-browser-languagedetector": "^2.2.2",
"i18next-fetch-backend": "^0.1.0",
"memoize-one": "^5.0.4",
"query-string": "5",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-dropzone": "^10.1.8",
"react-i18next": "^7.9.0",
"react-redux": "^5.0.7",
"react-router-dom": "^5.1.2",
"react-router-redux": "^5.0.0-alpha.9",
"react-select": "^2.1.2",
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"styled-components": "^4.4.0",
"whatwg-fetch": "^3.0.0"
},
"scripts": {
"polyfills": "concat node_modules/@babel/polyfill/dist/polyfill.min.js node_modules/whatwg-fetch/dist/fetch.umd.js -o target/scm-ui/polyfills.bundle.js",
"webfonts": "copyfiles -f node_modules/@fortawesome/fontawesome-free/webfonts/* target/scm-ui/styles/webfonts",
"build-css": "node-sass-chokidar --include-path ./styles --include-path ./node_modules styles/ -o target/scm-ui/styles",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./styles --include-path ./node_modules styles/ -o target/scm-ui/styles --watch --recursive",
"start-js": "ui-bundler serve --target target/scm-ui --vendor vendor.bundle.js",
"start": "npm-run-all -p webfonts watch-css polyfills start-js",
"build-js": "ui-bundler bundle --mode=production target/scm-ui/scm-ui.bundle.js",
"build-vendor": "ui-bundler vendor --mode=production target/scm-ui/vendor.bundle.js",
"build": "npm-run-all -s webfonts build-css polyfills build-vendor build-js",
"test": "jest",
"flow": "flow",
"pre-commit": "jest && flow && eslint src"
},
"devDependencies": {
"concat": "^1.0.3",
"copyfiles": "^2.0.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"fetch-mock": "^7.5.1",
"flow-bin": "^0.109.0",
"flow-typed": "^2.6.1",
"node-sass": "^4.9.3",
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.3",
"postcss-easy-import": "^3.0.0",
"prettier": "^1.13.7",
"react-router-enzyme-context": "^1.2.0",
"react-test-renderer": "^16.4.1",
"redux-mock-store": "^1.5.3",
"systemjs": "0.21.6"
},
"jest": {
"transform": {
"^.+\\.js$": "../scripts/babelMonoRepoTransformer.js"
}
}
}