forked from heyxyz/hey
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 1.02 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
{
"name": "lenster",
"version": "1.0.8-beta",
"private": true,
"license": "GPL-3.0",
"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 --parallel",
"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|8083' test:dev",
"test:nightly": "turbo run test:nightly"
},
"devDependencies": {
"husky": "^8.0.3",
"prettier": "^2.8.7",
"start-server-and-test": "^2.0.0",
"turbo": "^1.9.3"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "[email protected]"
}