regexper-static/package.json

115 lines
2.7 KiB
JSON
Raw Normal View History

{
"name": "regexper",
"version": "1.0.0",
"description": "Regular expression visualization tool",
"homepage": "http://regexper.com",
"author": {
"name": "Jeffrey Avallone",
"email": "jeff.avallone@gmail.com"
},
"license": "MIT",
"private": true,
"scripts": {
2019-01-02 01:27:53 +00:00
"start": "gatsby develop",
2019-01-02 23:26:50 +00:00
"build": "gatsby build",
2019-01-04 23:38:49 +00:00
"test:lint": "eslint --ignore-path .gitignore .",
"test:unit": "jest --coverage",
"test:watch": "jest --watch"
2019-01-02 01:27:53 +00:00
},
2019-01-16 12:00:46 +00:00
"husky": {
"hooks": {
"pre-commit": "yarn test:lint"
}
},
2019-01-03 12:08:47 +00:00
"browserslist": [
">1%",
"not ie < 11"
],
"postcss": {
"plugins": {
"postcss-import": {},
"postcss-cssnext": {
"features": {
"rem": false
}
}
}
},
2019-01-04 23:38:49 +00:00
"jest": {
"clearMocks": true,
"collectCoverageFrom": [
2019-01-06 17:08:37 +00:00
"src/**/*.js",
"!src/i18n.js"
2019-01-04 23:38:49 +00:00
],
"coverageReporters": [
"text-summary",
"html"
],
"globals": {
"__PATH_PREFIX__": ""
},
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
},
"modulePaths": [
"src",
"node_modules"
],
"setupTestFrameworkScriptFile": "<rootDir>/jest/setup.js",
2019-01-08 22:15:16 +00:00
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
2019-01-04 23:38:49 +00:00
"testPathIgnorePatterns": [
"node_modules",
".cache"
],
"transform": {
"\\.js$": "<rootDir>/jest/preprocess.js"
},
"transformIgnorePatterns": [
"node_modules/(?!(gatsby)/)"
2019-01-12 02:01:55 +00:00
],
"watchPathIgnorePatterns": [
"<rootDir>/coverage",
"<rootDir>/public"
2019-01-04 23:38:49 +00:00
]
},
2019-01-02 01:27:53 +00:00
"dependencies": {
2019-01-04 23:38:49 +00:00
"@babel/core": "^7.2.2",
"@ungap/url-search-params": "^0.1.2",
2019-01-04 23:38:49 +00:00
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
2019-01-15 22:46:43 +00:00
"babel-plugin-dynamic-import-node": "^2.2.0",
2019-01-04 23:38:49 +00:00
"babel-preset-gatsby": "^0.1.6",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"enzyme-to-json": "^3.3.5",
2019-01-02 23:26:50 +00:00
"eslint": "^5.11.1",
2019-01-04 23:38:49 +00:00
"eslint-plugin-jest": "^22.1.2",
2019-01-02 23:26:50 +00:00
"eslint-plugin-react": "^7.12.1",
2019-01-24 22:14:18 +00:00
"firebase-tools": "^6.3.0",
2019-01-02 01:27:53 +00:00
"gatsby": "^2.0.81",
2019-01-03 23:29:42 +00:00
"gatsby-plugin-google-analytics": "^2.0.8",
2019-01-15 23:51:46 +00:00
"gatsby-plugin-manifest": "^2.0.13",
"gatsby-plugin-offline": "^2.0.21",
2019-01-03 12:08:47 +00:00
"gatsby-plugin-postcss": "^2.0.2",
"gatsby-plugin-react-helmet": "^3.0.5",
2019-01-04 02:33:13 +00:00
"gatsby-plugin-sentry": "^1.0.0",
2019-01-16 12:00:46 +00:00
"husky": "^1.3.1",
2019-01-24 22:14:18 +00:00
"i18next": "^14.0.1",
2019-01-06 17:08:37 +00:00
"i18next-browser-languagedetector": "^2.2.4",
"i18next-xhr-backend": "^1.5.1",
2019-01-04 23:38:49 +00:00
"identity-obj-proxy": "^3.0.0",
"jest": "^23.6.0",
2019-01-03 12:08:47 +00:00
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
2019-01-02 01:27:53 +00:00
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
2019-01-03 12:49:54 +00:00
"react-feather": "^1.1.5",
2019-01-06 17:08:37 +00:00
"react-helmet": "^5.2.0",
"react-i18next": "^9.0.2",
"react-modal": "^3.8.1"
}
}