{ "name": "wagtail", "version": "1.0.0", "repository": "https://github.com/wagtail/wagtail", "private": true, "engines": { "node": ">=16.0.0" }, "browserslist": [ "Firefox ESR", "last 2 Chrome versions", "last 2 ChromeAndroid versions", "last 2 Edge versions", "last 1 Firefox version", "last 2 iOS versions", "last 3 Safari versions" ], "jest": { "moduleFileExtensions": [ "js", "ts", "tsx", "json", "node" ], "moduleNameMapper": { "jquery": "/wagtail/admin/static_src/wagtailadmin/js/vendor/jquery-3.6.0.min.js" }, "transform": { "^.+\\.(js|ts|tsx)$": "ts-jest" }, "testPathIgnorePatterns": [ "/node_modules/", "/build/", "client/tests/integration" ], "coveragePathIgnorePatterns": [ "/node_modules/", "/tests/" ], "setupFiles": [ "./client/tests/adapter.js", "./client/tests/stubs.js", "./client/tests/mock-fetch.js", "./client/tests/mock-jquery.js" ], "snapshotSerializers": [ "enzyme-to-json/serializer" ] }, "devDependencies": { "@babel/core": "^7.16.7", "@storybook/builder-webpack5": "^6.3.12", "@storybook/manager-webpack5": "^6.3.12", "@storybook/react": "^6.3.12", "@types/draft-js": "^0.10.45", "@types/jest": "^26.0.24", "@types/react": "^16.14.21", "@types/react-redux": "^7.1.20", "@typescript-eslint/eslint-plugin": "^5.8.0", "@typescript-eslint/parser": "^5.8.0", "@wagtail/eslint-config-wagtail": "^0.4.0", "@wagtail/stylelint-config-wagtail": "^0.3.2", "autoprefixer": "^10.4.0", "babel-loader": "^8.2.3", "copy-webpack-plugin": "^10.2.0", "css-loader": "^6.5.1", "cssnano": "^5.0.14", "enzyme": "^3.11.0", "enzyme-adapter-react-16": "^1.15.6", "enzyme-to-json": "^3.6.2", "eslint": "^8.5.0", "expose-loader": "^3.1.0", "jest": "^26.6.3", "mini-css-extract-plugin": "^2.4.5", "postcss": "^8.4.5", "postcss-loader": "^6.2.1", "react-axe": "^3.5.4", "react-test-renderer": "^16.14.0", "redux-mock-store": "^1.3.0", "sass": "^1.45.1", "sass-loader": "^12.4.0", "stylelint": "^14.2.0", "ts-jest": "^26.5.6", "ts-loader": "^9.2.6", "typescript": "^4.5.4", "webpack": "^5.65.0", "webpack-cli": "^4.9.1" }, "dependencies": { "core-js": "^2.5.3", "dateformat": "^2.2.0", "draft-js": "^0.10.5", "draftail": "^1.4.1", "draftjs-filters": "^2.5.0", "element-closest": "^2.0.2", "focus-trap-react": "^8.4.2", "formdata-polyfill": "^3.0.20", "immer": "^9.0.6", "js-cookie": "^2.2.1", "postcss-calc": "^7.0.5", "prop-types": "^15.6.2", "react": "^16.14.0", "react-dom": "^16.14.0", "react-redux": "^7.2.2", "react-transition-group": "^1.1.3", "redux": "^4.0.0", "redux-thunk": "^2.3.0", "reselect": "^4.0.0", "telepath-unpack": "^0.0.3", "url-search-params-polyfill": "^8.1.1", "uuid": "^8.3.2", "whatwg-fetch": "^2.0.3" }, "scripts": { "start": "webpack --config ./client/webpack.config.js --mode development --progress --watch", "build": "webpack --config ./client/webpack.config.js --mode production", "fix:js": "eslint --ext .js,.ts,.tsx --fix ./", "lint:js": "eslint --ext .js,.ts,.tsx --report-unused-disable-directives --max-warnings 16 ./client", "lint:css": "stylelint **/*.scss", "lint": "npm run lint:js && npm run lint:css", "test": "npm run test:unit", "test:unit": "jest", "test:unit:watch": "jest --watch", "test:unit:coverage": "jest --coverage", "test:integration": "./client/tests/integration/node_modules/.bin/jest --config ./client/tests/integration/jest.config.js", "storybook": "start-storybook -c client/.storybook -p 6006", "build-storybook": "build-storybook -c client/.storybook" } }