2014-11-23 16:52:45 +00:00
|
|
|
{
|
|
|
|
"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,
|
2016-10-15 16:36:49 +00:00
|
|
|
"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"
|
|
|
|
],
|
2019-03-23 19:45:23 +00:00
|
|
|
"setupFilesAfterEnv": [
|
|
|
|
"<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": {
|
2019-01-29 22:23:54 +00:00
|
|
|
"\\.js$": "<rootDir>/jest/preprocess.js",
|
|
|
|
"\\.svg$": "<rootDir>/jest/static-file-transform.js"
|
2019-01-04 23:38:49 +00:00
|
|
|
},
|
|
|
|
"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",
|
2019-01-12 03:32:20 +00:00
|
|
|
"@ungap/url-search-params": "^0.1.2",
|
2019-01-04 23:38:49 +00:00
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2019-03-23 19:45:23 +00:00
|
|
|
"babel-jest": "^24.5.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",
|
2019-03-23 19:45:23 +00:00
|
|
|
"core-js": "2",
|
2019-01-04 23:38:49 +00:00
|
|
|
"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",
|
2019-01-02 23:51:23 +00:00
|
|
|
"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-03-23 19:45:23 +00:00
|
|
|
"i18next": "^15.0.7",
|
|
|
|
"i18next-browser-languagedetector": "^3.0.1",
|
|
|
|
"i18next-xhr-backend": "^2.0.1",
|
2019-01-04 23:38:49 +00:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2019-03-23 19:45:23 +00:00
|
|
|
"jest": "^24.5.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",
|
2019-01-02 23:51:23 +00:00
|
|
|
"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",
|
2019-03-23 19:45:23 +00:00
|
|
|
"react-i18next": "^10.5.3",
|
2019-01-18 21:24:10 +00:00
|
|
|
"react-modal": "^3.8.1"
|
2014-11-23 16:52:45 +00:00
|
|
|
}
|
|
|
|
}
|