forked from heyxyz/hey
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 923 Bytes
/
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
{
"name": "lenster",
"version": "1.0.6-beta",
"private": true,
"license": "GPL-3.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build --parallel",
"dev": "turbo run dev --parallel",
"start": "turbo run start --parallel",
"lint": "turbo run lint --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": "turbo run test:e2e"
},
"devDependencies": {
"husky": "^8.0.3",
"prettier": "2.8.4",
"turbo": "1.7.4"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}