UNPKG

@ovine/init

Version:

Apply ovine template more easily.

68 lines (67 loc) 1.77 kB
{ "name": "template", "version": "0.0.1", "description": "your awesome project.", "private": true, "scripts": { "start": "ovine dev --mock", "build": "yarn eslint && ovine build", "scss": "ovine scss", "dll": "ovine dll --no-hash", "ovine": "ovine", "clean": "rimraf ./dist ./node_modules/.cache", "open:dist": "http-server ./dist -i -g -c5 -o / -p 7051 -P http://0.0.0.0:7051?", "pretty": "prettier --loglevel warn --write --config .prettierrc \"**/*.{md,yml,json,yaml,css}\"", "eslint": "eslint --cache \"**/*.{js,jsx}\" --fix" }, "dependencies": { "@ovine/core": "0.1.7", "@ovine/cli": "0.1.7", "@hot-loader/react-dom": "^16.8.6", "immer": "^5.3.2", "react": "^16.8.6", "react-dom": "^16.8.6", "react-router-dom": "^5.1.2", "styled-components": "^5.0.0", "whatwg-fetch": "^3.0.0", "lodash": "^4.17.15" }, "devDependencies": { "babel-eslint": "^10.0.3", "eslint": "^6.8.0", "eslint-config-airbnb": "^18.0.1", "eslint-config-prettier": "^6.7.0", "eslint-plugin-import": "^2.18.2", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-react": "^7.16.0", "eslint-plugin-react-hooks": "^2.3.0", "prettier": "^1.19.1", "husky": "^4.2.3", "lint-staged": "^10.0.7" }, "license": "MIT", "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{md,yml,json,yaml,css}": "yarn pretty", "*.{js,jsx}": "yarn eslint" }, "engines": { "node": ">=10.9.0" }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } }