This commit is contained in:
erwanlr
2019-03-02 10:43:45 +00:00
parent e0465e6e10
commit a5dbee93ff
9 changed files with 845 additions and 1 deletions

View File

@@ -0,0 +1,74 @@
{
"name": "nelio-maps",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm install && npm run watch",
"dev": "cross-env webpack",
"production": "cross-env NODE_ENV=production webpack",
"build": "npm run production",
"watch": "cross-env webpack --watch",
"lint-php": "composer run-script phpcs",
"lint-php:fix": "composer run-script phpcbf",
"lint-css": "stylelint --syntax scss \"src/**/*.scss\"",
"lint-css:fix": "stylelint --fix --syntax scss \"src/**/*.scss\"",
"lint-js": "eslint assets/src/**/*.js packages/**/*.js",
"lint-js:fix": "eslint assets/src/**/*.js packages/**/*.js --fix",
"lint": "npm run lint-php && npm run lint-css && npm run lint-js",
"update:packages": "npm i -g npm-check-updates && npm-check-updates -u && npm install",
"postinstall": "composer install"
},
"author": "Nelio Software",
"license": "GPL-2.0-or-later",
"homepage": "https://neliosoftware.com/",
"repository": "https://github.com/avillegasn/nelio-maps",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/plugin-syntax-jsx": "^7.2.0",
"@babel/plugin-transform-react-jsx": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"autoprefixer": "^7.2.6",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"base64-inline-loader": "^1.1.1",
"classnames": "^2.2.6",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "3.2.4",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"eslint": "^4.19.1",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-react": "^7.12.4",
"expose-loader": "latest",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^1.1.11",
"gist-embed": "^2.6.0",
"imagemin-webpack-plugin": "^2.4.2",
"node-sass": "^4.9.3",
"postcss-loader": "^2.1.6",
"progress-bar-webpack-plugin": "^1.11.0",
"react-dom": "^16.8.3",
"react-google-maps": "^9.4.5",
"regenerator-runtime": "^0.12.1",
"sass-loader": "^6.0.7",
"style-loader": "^0.18.2",
"stylelint": "^9.10.1",
"stylelint-config-wordpress": "^13.0.0",
"svg-react-loader": "^0.4.6",
"url-loader": "^1.1.2",
"webpack": "^3.12.0",
"webpack-rtl-plugin": "^1.7.0"
},
"dependencies": {
"npm": "^6.8.0"
},
"engines": {
"node": "8.9.1",
"npm": "5.5.1"
}
}