This repository has been archived on 2025-10-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Homework.app/package.json
2022-04-08 23:33:57 -03:00

50 lines
1.4 KiB
JSON

{
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"build:start": "pnpm run build && pnpm run start",
"lint:js": "next lint --ignore-path .eslintignore .",
"lint:prettier": "prettier --ignore-path .eslintignore .",
"lint": "pnpm run lint:js && pnpm run lint:prettier -- --check",
"lint:fix": "pnpm run lint:js -- --fix && pnpm run lint:prettier -- --write --list-different"
},
"dependencies": {
"next": "latest",
"next-pwa": "^5.4.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-ssr-prepass": "^1.5.0",
"use-dark-mode": "^2.3.1"
},
"devDependencies": {
"@babel/core": ">=7.0.0 <8.0.0",
"@heroicons/react": "^1.0.6",
"@prefresh/babel-plugin": "^0.4.0",
"@types/node": "17.0.4",
"@types/react": "17.0.38",
"@use-gesture/react": "^10.2.11",
"autoprefixer": "^10.4.4",
"cssnano": "^5.1.7",
"eslint": "^8.12.0",
"eslint-config-next": "^12.1.4",
"eslint-config-prettier": "^8.5.0",
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"prettier": "^2.6.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"react-spring": "^9.4.4",
"react-swipeable": "^6.2.1",
"tailwindcss": "^3.0.23",
"typescript": "4.5.4",
"webpack": ">=5.9.0 <6.0.0"
},
"peerDependencies": {
"@babel/core": ">=7.0.0 <8.0.0",
"@prefresh/babel-plugin": "^0.4.0",
"webpack": ">=5.9.0 <6.0.0"
}
}