This commit is contained in:
erwanlr
2019-03-30 07:20:14 +00:00
parent 1baa3e23b2
commit 07b3826806
509 changed files with 82506 additions and 48 deletions

View File

@@ -0,0 +1,94 @@
{
"name": "frontity-wp-plugin",
"version": "1.13.5",
"private": true,
"description": "WordPress plugin to inject and configure » Frontity",
"main": "index.js",
"scripts": {
"start": "NODE_ENV='production' webpack --config webpack.config.js --watch",
"dev": "webpack --config webpack.config.js --watch",
"build": "rimraf admin/dist && NODE_ENV='production' webpack --config webpack.config.js",
"analyze": "NODE_ENV='production' ANALYZE=true webpack --config webpack.config.js",
"grunt": "grunt",
"test": "jest --watch --silent",
"test:ci": "jest --silent --passWithNoTests",
"test:debug": "node --inspect node_modules/.bin/jest --watch",
"cz": "git-cz",
"release": "rimraf admin/analyze && npm run build && semantic-release && rimraf node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/frontity/wp-plugin.git"
},
"keywords": [
"frontity",
"wordpress",
"plugi"
],
"author": "Luis Herranz (luis@frontity.com), Eduardo Campaña (eduardo@frontity.com)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/frontity/wp-plugin/issues"
},
"homepage": "https://github.com/frontity/wp-plugin#readme",
"devDependencies": {
"@babel/core": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.1",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@semantic-release/changelog": "^3.0.1",
"@semantic-release/exec": "^3.3.0",
"@semantic-release/git": "^7.0.5",
"@semantic-release/github": "^5.2.5",
"@semantic-release/npm": "^5.1.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-plugin-styled-components": "^1.9.2",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"dotenv": "^6.2.0",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-uglify": "^4.0.0",
"grunt-wp-readme-to-markdown": "^2.0.1",
"husky": "^1.2.0",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"minimist": "^1.2.0",
"prettier": "^1.15.3",
"replace-in-file": "^3.4.2",
"rimraf": "^2.6.2",
"semantic-release": "^15.12.4",
"semantic-release-cli": "^4.0.12",
"simple-git": "^1.107.0",
"webpack": "^4.27.0",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"axios": "^0.18.0",
"grommet": "^2.1.1",
"grommet-icons": "^3.2.1",
"mobx": "^4.7.0",
"mobx-react": "^5.4.2",
"mobx-state-tree": "^3.8.1",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"styled-components": "^4.1.2",
"validator": "^10.9.0"
}
}