-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1 KB
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
35
{
"name": "studysync",
"version": "0.1.0",
"description": "AI-powered study companion transforming passive note-taking into active learning",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"start": "turbo start",
"lint": "turbo lint",
"test": "turbo test",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"clean": "turbo clean && rm -rf node_modules",
"db:migrate": "npm run db:migrate --workspace=@studysync/database",
"db:push": "npm run db:push --workspace=@studysync/database",
"db:studio": "npm run db:studio --workspace=@studysync/database",
"db:generate": "npm run db:generate --workspace=@studysync/database"
},
"devDependencies": {
"@types/node": "^20.10.0",
"eslint": "^8.54.0",
"prettier": "^3.1.0",
"turbo": "^1.11.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"packageManager": "npm@10.2.0"
}