forked from classroomio/classroomio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1019 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 1019 Bytes
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
33
34
{
"name": "classroomio",
"version": "0.1.1",
"scripts": {
"build": "turbo run build",
"dev": "turbo prepare --concurrency 13 && turbo run dev",
"lint": "turbo run lint",
"clean": "turbo clean && rm -rf node_modules",
"format": "prettier . --write",
"release": "standard-version",
"ci": "cypress run",
"supabase": "pnpx supabase",
"dashboard:build": "cd apps/dashboard && pnpm i && IS_SELFHOSTED=true NODE_OPTIONS='--max-old-space-size=20384' DEPLOYMENT_PROVIDER=docker pnpm build",
"dashboard:start": "cd apps/dashboard && node build"
},
"license": "MIT",
"packageManager": "pnpm@8.0.0",
"dependencies": {
"turbo": "^1.10.16"
},
"devDependencies": {
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.5.7",
"standard-version": "^9.5.0",
"tsconfig": "workspace:*",
"typescript": "^5.1.6"
},
"engines": {
"node": "^18.18.0"
}
}