-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.26 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
44
45
46
47
48
49
{
"name": "quackdb",
"version": "0.0.2",
"private": true,
"type": "module",
"license": "MIT",
"repository": {
"url": "https://github.com/mattf96s/quackdb"
},
"author": {
"name": "Matthew Fainman",
"url": "https://www.matthewfainman.com/"
},
"workspaces": [
"apps/*",
"packages/*"
],
"description": "QuackDB - An online DuckDB SQL playground and editor",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "dotenv -- turbo run dev",
"lint": "turbo run lint",
"format": "turbo run format",
"sso": "aws sso login --sso-session=d-93675d34f6",
"set-node-v": "pnpm env use --global 20",
"typecheck": "turbo run typecheck",
"knip": "knip",
"release": "turbo build && changeset version"
},
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/node": "20.12.12",
"conventional-changelog-conventionalcommits": "^8.0.0",
"dotenv-cli": "^7.4.2",
"husky": "^8.0.3",
"knip": "^5.17.3",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"turbo": "^1.13.3",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=20 <21"
},
"packageManager": "[email protected]"
}