rapid-test/package.json

43 lines
1.3 KiB
JSON

{
"name": "rapid-nextjs-testing",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently npm:dev@rapid npm:dev@next",
"dev@rapid": "rapid run",
"dev@next": "next dev",
"lint": "npm run lint@js && npm run lint@rust",
"lint@js": "eslint . --ext .js,.ts,.jsx,.tsx",
"lint@rust": "cargo clippy --all-targets --all-features -- -D warnings",
"format": "prettier --write --ignore-unknown --no-error-on-unmatched-pattern .",
"format-check": "prettier --check --ignore-unknown --no-error-on-unmatched-pattern .",
"clean": "npm run clean@js && npm run clean@rust",
"clean@js": "rimraf node_modules && rimraf .next",
"clean@rust": "cargo clean"
},
"dependencies": {
"@rapid-web/react": "^0.2.4",
"@types/node": "20.4.2",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"eslint": "8.45.0",
"eslint-config-next": "13.4.10",
"next": "13.4.10",
"postcss": "8.4.26",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3",
"typescript": "5.1.6"
},
"devDependencies": {
"@rapid-web/ui": "^0.2.2",
"concurrently": "^8.2.0",
"eslint-config-prettier": "^8.9.0",
"prettier": "^2.8.8",
"prettier-plugin-rust": "^0.1.9",
"prettier-plugin-toml": "^0.3.1",
"rimraf": "^5.0.1"
}
}