meteorite/package.json
2023-02-04 19:48:44 -05:00

147 lines
3.9 KiB
JSON

{
"name": "meteorite",
"version": "1.0.0",
"private": true,
"engines": {
"node": "16.x"
},
"dependencies": {
"@emotion/core": "^10.0.10",
"@emotion/styled": "^10.0.10",
"@reach/router": "^1.2.1",
"@rehooks/component-size": "^1.0.2",
"@svgr/webpack": "2.4.1",
"ajv": "^6.10.0",
"amplitude-js": "^5.8.0",
"axios": "^0.21.1",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "9.0.0",
"babel-jest": "^24.7.1",
"babel-loader": "8.0.4",
"babel-plugin-named-asset-import": "^0.2.2",
"babel-preset-react-app": "^5.0.4",
"bfj": "6.1.1",
"case-sensitive-paths-webpack-plugin": "2.1.2",
"chalk": "2.4.1",
"css-loader": "1.0.0",
"dotenv": "^6.0.0",
"dotenv-expand": "4.2.0",
"emotion": "^9.2.12",
"eslint": "5.6.0",
"eslint-config-react-app": "^3.0.4",
"eslint-loader": "2.1.1",
"eslint-plugin-flowtype": "2.50.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-react": "7.11.1",
"file-loader": "2.0.0",
"fs-extra": "7.0.0",
"html-webpack-plugin": "4.0.0-alpha.2",
"husky": "^4.0.10",
"identity-obj-proxy": "3.0.0",
"jest": "^24.7.1",
"jest-pnp-resolver": "1.0.1",
"jest-resolve": "23.6.0",
"lodash-es": "^4.17.11",
"lodash-move": "^1.1.1",
"mini-css-extract-plugin": "0.4.3",
"moment": "^2.22.2",
"offline-plugin": "^5.0.7",
"optimize-css-assets-webpack-plugin": "5.0.1",
"pnp-webpack-plugin": "1.1.0",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"postcss-preset-env": "6.0.6",
"postcss-safe-parser": "4.0.1",
"query-string": "^6.2.0",
"react": "^16.8.5",
"react-app-polyfill": "^0.1.3",
"react-dev-utils": "^11.0.4",
"react-device-detect": "^1.6.2",
"react-dom": "^16.8.5",
"react-emotion": "^9.2.12",
"react-ga": "^2.7.0",
"react-spring": "^8.0.18",
"react-svg-inline": "^2.1.1",
"react-toast-notifications": "^2.4.0",
"recharts": "^1.5.0",
"recompose": "^0.30.0",
"resolve": "1.8.1",
"sass-loader": "7.1.0",
"style-loader": "0.23.0",
"terser-webpack-plugin": "1.1.0",
"typed.js": "^2.0.11",
"url-loader": "1.1.1",
"victory": "^30.6.0",
"webpack": "4.19.1",
"webpack-dev-server": ">=3.1.11",
"webpack-manifest-plugin": "2.0.4",
"workbox-webpack-plugin": "3.6.2"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js && cp build/index.html build/200.html",
"now-build": "npm run build",
"test": "node scripts/test.js",
"deploy": "now --prod"
},
"husky": {
"hooks": {
"post-commit": "git rev-parse --short HEAD > git-hash.txt"
}
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}"
],
"resolver": "jest-pnp-resolver",
"setupFiles": [
"react-app-polyfill/jsdom"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx}",
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx}"
],
"testEnvironment": "jsdom",
"testURL": "http://localhost",
"transform": {
"^.+\\.(js|jsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"js",
"json",
"web.jsx",
"jsx",
"node"
]
},
"babel": {
"presets": [
"react-app"
]
},
"devDependencies": {
"babel-plugin-emotion": "^9.2.11"
}
}