mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-09 15:07:55 -05:00
* 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
32 lines
743 B
JSON
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"
|
|
}
|
|
}
|