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

60 lines
2.2 KiB
JSON
Raw Normal View History

2018-07-02 14:50:13 +02:00
{
2018-07-09 11:38:13 +02:00
"homepage": "/scm",
2018-07-02 14:50:13 +02:00
"name": "scm-ui",
"version": "0.1.0",
"private": true,
"main": "src/index.js",
2018-07-02 14:50:13 +02:00
"dependencies": {
2018-08-30 08:49:28 +02:00
"@fortawesome/fontawesome-free": "^5.3.1",
2018-08-30 11:40:53 +02:00
"@scm-manager/ui-extensions": "^0.0.7",
2018-07-11 14:59:01 +02:00
"bulma": "^0.7.1",
2018-07-02 14:50:13 +02:00
"classnames": "^2.2.5",
2018-07-31 16:32:16 +02:00
"font-awesome": "^4.7.0",
"history": "^4.7.2",
"i18next": "^11.4.0",
"i18next-browser-languagedetector": "^2.2.2",
"i18next-fetch-backend": "^0.1.0",
2018-07-31 16:32:16 +02:00
"moment": "^2.22.2",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-i18next": "^7.9.0",
2018-07-02 14:50:13 +02:00
"react-jss": "^8.6.0",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-router-redux": "^5.0.0-alpha.9",
2018-07-02 14:50:13 +02:00
"redux": "^4.0.0",
"redux-devtools-extension": "^2.13.5",
2018-07-02 14:50:13 +02:00
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
2018-07-02 14:50:13 +02:00
},
"scripts": {
2018-09-06 14:42:48 +02:00
"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 start-js",
2018-09-06 14:42:48 +02:00
"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",
2018-08-30 13:12:16 +02:00
"build": "npm-run-all -s webfonts build-css build-vendor build-js",
"test": "ui-bundler test",
"test-ci": "ui-bundler test --ci",
"flow": "flow",
2018-08-07 15:10:47 +02:00
"pre-commit": "jest && flow && eslint src"
},
"devDependencies": {
2018-09-10 15:11:51 +02:00
"@scm-manager/ui-bundler": "^0.0.15",
2018-08-30 08:49:28 +02:00
"copyfiles": "^2.0.0",
2018-07-10 16:37:40 +02:00
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
2018-07-11 22:01:36 +02:00
"fetch-mock": "^6.5.0",
"flow-typed": "^2.5.1",
"jest": "^23.5.0",
2018-07-11 14:59:01 +02:00
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.3",
2018-07-10 16:37:40 +02:00
"prettier": "^1.13.7",
"react-router-enzyme-context": "^1.2.0",
2018-07-11 22:01:36 +02:00
"react-test-renderer": "^16.4.1",
"redux-mock-store": "^1.5.3"
2018-07-02 14:50:13 +02:00
}
}