regexper-static/package.json

66 lines
1.9 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": {
2018-02-10 21:05:25 +00:00
"start": "webpack-dev-server --config webpack.dev.js",
2018-02-10 20:58:29 +00:00
"start:prod": "run-s build start:http-server",
"start:http-server": "http-server ./build",
2018-02-10 23:03:21 +00:00
"build": "webpack --config webpack.prod.js",
"test": "run-s test:lint test:unit",
"test:unit": "jest",
2018-02-10 23:31:16 +00:00
"test:lint": "eslint --ignore-path .gitignore .",
"test:watch": "yarn test:unit --watch",
2018-02-10 23:11:30 +00:00
"precommit": "run-s test:lint"
2018-02-10 20:58:29 +00:00
},
2018-02-10 23:30:07 +00:00
"jest": {
"moduleNameMapper": {
"\\.svg$": "<rootDir>/src/__mocks__/svgMock.js",
"\\.css$": "<rootDir>/src/__mocks__/styleMock.js"
}
},
2018-02-10 20:58:29 +00:00
"dependencies": {
"autoprefixer": "^7.2.5",
2018-02-10 21:22:59 +00:00
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
2018-02-10 20:58:29 +00:00
"copy-webpack-plugin": "^4.4.1",
"css-loader": "^0.28.9",
"extract-text-webpack-plugin": "^3.0.2",
"favicons-webpack-plugin-cesco": "^0.0.6",
2018-02-10 21:32:52 +00:00
"feather-icons": "^4.5.0",
2018-02-10 20:58:29 +00:00
"html-webpack-plugin": "^2.30.1",
"postcss-loader": "^2.1.0",
"precss": "^3.1.0",
2018-02-10 21:22:59 +00:00
"react": "^16.2.0",
"react-dom": "^16.2.0",
2018-02-10 20:58:29 +00:00
"style-loader": "^0.20.1",
2018-02-10 21:05:25 +00:00
"uglifyjs-webpack-plugin": "^1.1.8",
"url-loader": "^0.6.2",
2018-02-10 20:58:29 +00:00
"webpack": "^3.10.0",
2018-02-10 21:08:42 +00:00
"webpack-merge": "^4.1.1",
"workbox-webpack-plugin": "^2.1.2"
2018-02-10 20:58:29 +00:00
},
"devDependencies": {
2018-02-10 23:30:07 +00:00
"babel-jest": "^22.2.2",
2018-02-10 23:03:21 +00:00
"eslint": "^4.17.0",
2018-02-10 23:30:07 +00:00
"eslint-plugin-jest": "^21.8.0",
2018-02-10 23:03:21 +00:00
"eslint-plugin-react": "^7.6.1",
2018-02-10 20:58:29 +00:00
"http-server": "^0.11.1",
2018-02-10 23:11:30 +00:00
"husky": "^0.14.3",
2018-02-10 23:30:07 +00:00
"jest": "^22.2.2",
"npm-run-all": "^4.1.2",
2018-02-10 23:30:07 +00:00
"react-test-renderer": "^16.2.0",
"webpack-dev-server": "^2.11.1"
}
}