@ovine/init
Version:
Apply ovine template more easily.
74 lines (73 loc) • 2.01 kB
JSON
{
"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 -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,ts,tsx}\" --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": {
"@types/react": "^16.8.6",
"@types/lodash": "^4.14.149",
"@types/styled-components": "^5.0.0",
"@types/react-router-dom": "^5.1.0",
"@typescript-eslint/eslint-plugin": "~5.16.0",
"@typescript-eslint/parser": "~5.16.0",
"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",
"typescript": "~4.5.5"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{md,yml,json,yaml,css}": "yarn pretty",
"*.{ts,tsx}": "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"
]
}
}