-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.26 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.26 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
{
"name": "evergreendocs",
"description": "Evergreen Docs is a Github App designed to keep your documentation up-to-date, accurate, and comprehensive, using the context of your repository and the advanced language capabilities of Chat GPT. With its integration with Github, Evergreen Docs has access to all relevant information in your repository, including code, issues, and pull requests, allowing it to automatically update your documentation as your code evolves.",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"terraform/*"
],
"scripts": {
"build": "turbo run build",
"dev": "CURRENT_GIT_BRANCH=$(git symbolic-ref --short HEAD) turbo run dev --parallel",
"dev:sst": "sst dev --stage $SST_STAGE",
"remove": "sst remove --stage $SST_STAGE",
"lint": "turbo run lint --parallel",
"test": "turbo run test --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"deploy": "sst deploy --stage $SST_STAGE",
"migration:push": "turbo run migration:push"
},
"devDependencies": {
"constructs": "10.1.156",
"dotenv": "^16.0.3",
"prettier": "latest",
"sst": "2.2.2",
"turbo": "latest"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@3.4.1"
}