material-you-react/package.json

31 lines
666 B
JSON
Raw Normal View History

2024-01-31 22:24:13 +03:00
{
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
2024-01-31 22:54:26 +03:00
"start": "next start",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
2024-01-31 22:24:13 +03:00
},
"dependencies": {
2024-01-31 22:54:26 +03:00
"install": "^0.13.0",
2024-01-31 22:24:13 +03:00
"next": "latest",
2024-01-31 22:54:26 +03:00
"npm": "^10.4.0",
"prop-types": "^15.8.1",
2024-01-31 22:24:13 +03:00
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
2024-01-31 22:54:26 +03:00
"@types/node": "20.8.2",
2024-01-31 22:24:13 +03:00
"@types/react": "18.2.33",
"@types/react-dom": "18.2.14",
2024-01-31 22:54:26 +03:00
"gts": "^5.2.0",
"typescript": "~5.2.0"
2024-01-31 22:24:13 +03:00
}
}