mirror of
https://github.com/DustinBrett/daedalOS.git
synced 2026-01-15 12:15:02 +00:00
72 lines
2.0 KiB
JSON
72 lines
2.0 KiB
JSON
{
|
|
"name": "x",
|
|
"version": "2.0.0",
|
|
"description": "Desktop environment in the browser.",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/DustinBrett/x.git"
|
|
},
|
|
"author": "Dustin Brett",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"eslint": "eslint .",
|
|
"stylelint": "stylelint **/*.tsx",
|
|
"prettier": "prettier --write .",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*": "prettier --write",
|
|
"*.{js,ts,tsx}": "eslint --fix",
|
|
"*.tsx": "stylelint --fix"
|
|
},
|
|
"dependencies": {
|
|
"next": "^10.0.5",
|
|
"react": "^17.0.1",
|
|
"react-dom": "^17.0.1",
|
|
"styled-components": "^5.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^5.11.9",
|
|
"@testing-library/react": "^11.2.3",
|
|
"@types/jest": "^26.0.20",
|
|
"@types/node": "^14.14.22",
|
|
"@types/react": "^17.0.0",
|
|
"@types/styled-components": "^5.1.7",
|
|
"@typescript-eslint/eslint-plugin": "^4.14.0",
|
|
"@typescript-eslint/parser": "^4.14.0",
|
|
"babel-plugin-styled-components": "^1.12.0",
|
|
"eslint": "^7.18.0",
|
|
"eslint-config-airbnb": "^18.2.1",
|
|
"eslint-config-prettier": "^7.2.0",
|
|
"eslint-import-resolver-typescript": "^2.3.0",
|
|
"eslint-plugin-import": "^2.22.1",
|
|
"eslint-plugin-jest": "^24.1.3",
|
|
"eslint-plugin-jest-dom": "^3.6.5",
|
|
"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",
|
|
"eslint-plugin-testing-library": "^3.10.1",
|
|
"husky": "^4.3.8",
|
|
"jest": "^26.6.3",
|
|
"jest-next-dynamic": "^1.0.1",
|
|
"lint-staged": "^10.5.3",
|
|
"prettier": "2.2.1",
|
|
"stylelint": "^13.9.0",
|
|
"stylelint-config-prettier": "^8.0.2",
|
|
"stylelint-config-sass-guidelines": "^7.1.0",
|
|
"stylelint-config-standard": "^20.0.0",
|
|
"stylelint-config-styled-components": "^0.1.1",
|
|
"typescript": "^4.1.3"
|
|
}
|
|
}
|