Files
remark42/frontend/package.json
T
2022-01-18 01:38:30 -06:00

121 lines
4.3 KiB
JSON

{
"name": "remark42",
"version": "0.16.0",
"license": "MIT",
"scripts": {
"build": "webpack --mode production",
"build:analyze": "webpack --mode production --analyze",
"start": "cross-env REMARK_API_BASE_URL=https://demo.remark42.com webpack serve --mode development",
"dev": "cross-env REMARK_URL=http://127.0.0.1:8080 webpack serve --mode development",
"lint": "run-p lint:*",
"test": "jest",
"test:coverage": "jest --coverage",
"check": "cross-env NODE_ENV=production run-s build && run-p check:*",
"check:types": "tsc -p tsconfig.json --noEmit",
"check:translation": "run-s translation:extract translation:check",
"lint:eslint": "eslint --max-warnings=0 \"**/*.{ts?(x),js}\"",
"lint:stylelint": "stylelint \"app/**/*.css\" \"templates/**\"",
"size": "cross-env NODE_ENV=production npm run build && size-limit",
"prettier": "prettier --write \"./**/*.{js,ts,tsx,css,html}\"",
"translation:extract": "formatjs extract --out-file=./extracted-messages/messages.json \"**/!(*.d).ts?(x)\"",
"translation:generate": "node ./tasks/generateDictionary.js",
"translation:check": "node ./tasks/checkTranslation.js"
},
"engines": {
"node": ">=12.11",
"npm": ">=6.13.4"
},
"dependencies": {
"@github/markdown-toolbar-element": "^1.5.1",
"@github/text-expander-element": "^2.2.1",
"@ungap/custom-elements": "^1.0.0",
"bem-react-helper": "^1.2.2",
"clsx": "^1.1.1",
"core-js": "^3.12.0",
"intersection-observer": "^0.12.0",
"lodash-es": "^4.17.21",
"node-emoji": "^1.10.0",
"preact": "^10.5.13",
"react-intl": "^5.17.4",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"@babel/preset-env": "^7.14.1",
"@babel/preset-react": "^7.13.13",
"@formatjs/cli": "^4.2.11",
"@mavrin/stylelint-declaration-use-css-custom-properties": "1.0.0-alpha.2",
"@prefresh/babel-plugin": "^0.4.1",
"@prefresh/webpack": "^3.2.2",
"@size-limit/file": "^4.10.2",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/preact": "^2.0.1",
"@types/enzyme": "^3.10.8",
"@types/jest": "^26.0.23",
"@types/lodash-es": "^4.17.4",
"@types/node-emoji": "^1.8.1",
"@types/react-redux": "^7.1.16",
"@types/redux-mock-store": "^1.0.2",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"codecov": "^3.8.2",
"cross-env": "^7.0.3",
"css-loader": "^5.2.4",
"css-minimizer-webpack-plugin": "^3.0.2",
"cssnano": "^5.0.2",
"dotenv": "^9.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^3.1.0",
"eslint": "^7.25.0",
"eslint-config-preact": "^1.1.4",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-flowtype": "^5.7.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^4.2.0",
"fast-async": "^6.3.8",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^6.2.6",
"html-webpack-plugin": "^5.3.1",
"husky": "^6.0.0",
"identity-obj-proxy": "^3.0.0",
"incstr": "^1.2.3",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"jest-localstorage-mock": "^2.4.10",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^2.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.2.3",
"prettier": "^2.5.1",
"redux-mock-store": "^1.5.4",
"size-limit": "^7.0.5",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-value-no-unknown-custom-properties": "^3.0.0",
"ts-jest": "^26.5.6",
"ts-loader": "^9.1.2",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.2.4",
"url-loader": "^4.1.1",
"webpack": "^5.36.2",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^3.11.2"
}
}