mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2026-01-15 12:15:02 +00:00
66 lines
1.8 KiB
JSON
66 lines
1.8 KiB
JSON
{
|
|
"name": "x",
|
|
"version": "2.0.0",
|
|
"description": "Desktop environment in the browser.",
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"eslint": "eslint .",
|
|
"stylelint": "stylelint **/*.scss",
|
|
"prettier": "prettier --write .",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/DustinBrett/x.git"
|
|
},
|
|
"author": "Dustin Brett",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"next": "^10.0.5",
|
|
"react": "^17.0.1",
|
|
"react-dom": "^17.0.1",
|
|
"sass": "^1.32.2"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^5.11.8",
|
|
"@testing-library/react": "^11.2.3",
|
|
"@types/jest": "^26.0.20",
|
|
"@types/node": "^14.14.20",
|
|
"@types/react": "^17.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^4.12.0",
|
|
"@typescript-eslint/parser": "^4.12.0",
|
|
"eslint": "^7.17.0",
|
|
"eslint-config-airbnb": "^18.2.1",
|
|
"eslint-config-prettier": "^7.1.0",
|
|
"eslint-import-resolver-typescript": "^2.3.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-jest": "^24.1.3",
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
|
"eslint-plugin-react": "^7.22.0",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
"husky": "^4.3.7",
|
|
"jest": "^26.6.3",
|
|
"lint-staged": "^10.5.3",
|
|
"prettier": "2.2.1",
|
|
"stylelint": "^13.8.0",
|
|
"stylelint-config-prettier": "^8.0.2",
|
|
"stylelint-config-sass-guidelines": "^7.1.0",
|
|
"stylelint-config-standard": "^20.0.0",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*": "prettier --write",
|
|
"*.{js,ts,tsx}": "eslint --fix",
|
|
"*.scss": "stylelint --fix"
|
|
}
|
|
}
|