procyon/package.json
2020-11-01 21:16:10 +01:00

111 lines
3.4 KiB
JSON

{
"name": "treejs",
"version": "1.0.0",
"description": "",
"author": "romanjaros <jarosr93@gmail.com>",
"license": "ISC",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap --no-ci",
"start": "lerna run --stream --scope documentation start",
"test": "jest",
"test:update": "jest -u",
"eslint": "eslint -c .eslintrc modules/**/*.{ts,tsx}",
"stylelint": "stylelint modules/**/*.ts",
"prettier": "prettier --check modules/**/*.ts",
"lint": "npm run eslint && npm run stylelint && npm run prettier",
"build:doc": "node genDoc.js",
"build:app": "lerna run --stream --scope documentation build",
"build:module": "lerna run --ignore documentation build",
"clean:module": "lerna run --ignore documentation clean",
"serve": "http-server dist/client",
"ci:lint": "npm run eslint && npm run stylelint && npm run prettier",
"ci:test": "npm run build:doc && jest",
"ci:test-e2e": "nightwatch",
"ci:increase-version": "lerna version --no-git-tag-version --no-push --yes"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "1.2.27",
"@fortawesome/free-solid-svg-icons": "5.12.1",
"@fortawesome/react-fontawesome": "0.1.9",
"@hot-loader/react-dom": "16.13.0",
"clipboard": "2.0.4",
"formik": "2.1.4",
"highlight.js": "9.18.1",
"moment": "2.24.0",
"polished": "3.4.4",
"ramda": "0.27.0",
"react": "16.13.0",
"react-dom": "16.13.0",
"react-element-to-jsx-string": "^14.3.1",
"react-highlight": "0.12.0",
"react-localization": "1.0.15",
"react-outside-click-handler": "1.3.0",
"react-redux": "7.2.0",
"react-router": "5.1.2",
"redux": "4.0.5",
"redux-thunk": "2.3.0",
"reselect": "4.0.0",
"styled-components": "5.0.1",
"typescript": "3.9.6",
"yup": "0.29.1"
},
"devDependencies": {
"@types/enzyme": "3.10.4",
"@types/enzyme-adapter-react-16": "1.0.5",
"@types/highlight.js": "9.12.3",
"@types/jest": "25.1.4",
"@types/node": "13.9.2",
"@types/ramda": "0.26.44",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.5",
"@types/react-highlight": "0.12.2",
"@types/react-outside-click-handler": "1.3.0",
"@types/react-redux": "7.1.6",
"@types/react-router": "5.1.4",
"@types/styled-components": "5.0.1",
"@types/yup": "0.29.3",
"@typescript-eslint/eslint-plugin": "2.24.0",
"@typescript-eslint/parser": "2.24.0",
"awesome-typescript-loader": "5.2.1",
"copy-webpack-plugin": "5.1.1",
"cross-env": "7.0.2",
"css-loader": "3.4.2",
"enzyme": "3.11.0",
"enzyme-adapter-react-16": "1.15.2",
"enzyme-to-json": "3.4.3",
"eslint": "6.8.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-react": "7.18.0",
"eslint-plugin-react-hooks": "2.5.0",
"eslint-plugin-typescript": "0.14.0",
"file-loader": "6.0.0",
"html-webpack-plugin": "3.2.0",
"http-server": "^0.12.3",
"jest": "^25.1.0",
"lerna": "3.20.2",
"link-module-alias": "1.2.0",
"nightwatch": "^1.3.6",
"prettier": "^2.0.5",
"prop-types": "^15.7.2",
"react-hot-loader": "4.12.20",
"source-map-loader": "0.2.4",
"style-loader": "1.1.3",
"stylelint": "13.2.1",
"stylelint-config-recommended": "3.0.0",
"stylelint-config-styled-components": "0.1.1",
"stylelint-processor-styled-components": "1.9.0",
"syncpack": "5.0.1",
"ts-jest": "^25.2.1",
"ts-node": "8.7.0",
"tsconfig-paths": "3.8.0",
"typedoc": "0.17.1",
"typescript-json-schema": "0.42.0",
"webpack": "4.41.5",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.10.1"
},
"workspaces": [
"modules/*"
]
}