forked from Ashutoshpadhi629/algorithmic-arena
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 827 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "app",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"dev:docker": "npm run prisma:docker && yarn dev",
"prisma:docker": "cd packages/db && npx prisma db push --force-reset && npx prisma db seed",
"start:web": "cd apps/web && npm run start",
"start:sweeper": "cd apps/sweeper && npm run start"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"prettier": "^3.2.5",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@icons-pack/react-simple-icons": "^9.5.0",
"@prisma/client": "^5.15.0"
}
}