Files
sim/package.json
Waleed Latif a92ee8bf46 feat(turbo): restructured repo to be a standard turborepo monorepo (#341)
* added turborepo

* finished turbo migration

* updated gitignore

* use dotenv & run format

* fixed error in docs

* remove standalone deployment in prod

* fix ts error, remove ignore ts errors during build

* added formatter to the end of the docs generator
2025-05-09 21:45:49 -07:00

32 lines
743 B
JSON

{
"devDependencies": {
"@next/env": "^15.3.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"dotenv-cli": "^7.3.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "^2.5.3"
},
"packageManager": "npm@11.3.0",
"name": "simstudio",
"version": "0.0.0",
"private": true,
"license": "Apache-2.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "dotenv -- turbo run build",
"dev": "dotenv -- turbo run dev",
"test": "dotenv -- turbo run test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "dotenv -- turbo run lint"
},
"overrides": {
"react": "19.1.0",
"react-dom": "19.1.0"
}
}