-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 729 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 729 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
{
"name": "auto-gpt-webui",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*"
],
"scripts": {
"setup-auto-gpt": "bash scripts/setup-auto-gpt.sh",
"build": "turbo run build",
"start": "turbo run start",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md,py,json}\"",
"rimraf": "npx rimraf --glob **/node_modules"
},
"packageManager": "npm@9.5.0",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"eslint-config-custom": "*",
"prettier": "latest",
"turbo": "latest"
},
"prettier": {
"quoteProps": "consistent",
"jsxSingleQuote": true,
"singleQuote": true,
"trailingComma": "all",
"printWidth": 80
}
}