-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 922 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 922 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
35
36
{
"name": "sheetbrain-ai",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.26.2",
"description": "Premium Google Sheets add-on for formula auditing using RAG",
"workspaces": [
"apps-script",
"backend",
"shared"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test",
"lint": "turbo lint",
"format": "turbo format",
"deploy:gas": "cd apps-script && npm run deploy",
"deploy:vercel": "cd backend && npm run deploy",
"docker:up": "docker-compose up -d",
"docker:down": "docker-compose down"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "^8.56.0",
"prettier": "^3.1.1",
"turbo": "^1.11.2",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
}
}