forked from heyxyz/hey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.05 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
{
"name": "lenster",
"version": "1.0.7-beta",
"private": true,
"license": "GPL-3.0",
"workspaces": [
"apps/*",
"packages/*",
"packages/workers/*",
"tests"
],
"scripts": {
"build": "turbo run build --parallel",
"dev": "turbo run dev --parallel",
"start": "turbo run start --parallel",
"lint": "turbo run lint --parallel",
"lint:fix": "turbo run lint:fix --parallel",
"typecheck": "turbo run typecheck --parallel",
"codegen": "turbo run codegen",
"i18n:extract": "turbo run extract",
"workers:deploy": "turbo run worker:deploy --parallel",
"prettier": "prettier --check \"**/*.{ts,tsx,md}\"",
"prettier:fix": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky install",
"test:dev": "turbo run test:dev",
"test:e2e": "start-server-and-test start '4783|4784' test:dev"
},
"devDependencies": {
"husky": "^8.0.3",
"prettier": "2.8.4",
"start-server-and-test": "^2.0.0",
"turbo": "1.8.3"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "yarn@1.22.19"
}