-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.07 KB
/
package.json
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
37
38
39
40
41
42
43
{
"name": "wept",
"version": "0.0.1",
"private": true,
"description": "Chat GPT, Together.",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"start": "turbo run start",
"dev": "dotenv -- turbo run dev",
"build": "dotenv -- turbo run build",
"lint": "turbo run lint",
"check": "dotenv -- turbo run check",
"deploy": "turbo run deploy",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"clean": "turbo run clean",
"format": "turbo run format",
"ci": "bun lint && turbo run build && turbo run ci test:ci",
"db:push": "dotenv -- turbo run db:push",
"db:seed": "dotenv -- turbo run db:seed",
"db:studio": "dotenv -- turbo run db:studio",
"db:generate": "dotenv -- turbo run db:generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deablabs/wept.git"
},
"license": "MIT",
"dependencies": {
"dotenv-cli": "^7.3.0",
"turbo": "^1.10.15",
"typescript": "^5.0.3"
},
"engines": {
"node": "18"
},
"resolutions": {
"string-width": "4.2.3"
}
}