mirror this repo: https://github.com/The-Run-Philosophy-Organization/run.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.4 KiB
53 lines
1.4 KiB
{
|
|
"name": "run",
|
|
"private": true,
|
|
"author": "Himself65 <[email protected]>",
|
|
"scripts": {
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"type-check": "tsc",
|
|
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
|
|
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
|
|
"postinstall": "husky install",
|
|
"commit": "cz"
|
|
},
|
|
"lint-staged": {
|
|
"./src/**/*.{ts,js,jsx,tsx}": [
|
|
"yarn lint --fix",
|
|
"yarn format"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"next": "^12.1.5",
|
|
"nextra": "^1.1.0",
|
|
"nextra-theme-docs": "^1.2.6",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^16.2.3",
|
|
"@commitlint/config-conventional": "^16.2.1",
|
|
"@types/node": "^16.11.27",
|
|
"@types/react": "^18.0.5",
|
|
"@types/react-dom": "^18.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.19.0",
|
|
"@typescript-eslint/parser": "^5.19.0",
|
|
"commitizen": "^4.2.4",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^8.13.0",
|
|
"eslint-config-next": "^12.1.5",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"husky": "^7.0.4",
|
|
"lint-staged": "^12.3.8",
|
|
"prettier": "^2.6.2",
|
|
"typescript": "^4.6.3"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|
|
|