-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
51 lines (51 loc) · 1.47 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
50
51
{
"name": "goat-monorepo",
"version": "2.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"clean": "turbo run clean && rimraf node_modules lint lint-results",
"build": "turbo run build",
"post-install": "turbo run post-install",
"dev": "turbo run dev --parallel",
"start": "turbo run start --parallel",
"generate": "turbo run generate",
"prepare": "husky install ./.husky",
"web": "dotenv -- turbo run dev --filter=web",
"storybook": "turbo run dev --filter=storybook",
"build-storybook": "turbo run build --filter=storybook",
"docs": "turbo run dev --filter=docs",
"build-docs": "turbo run build --filter=docs",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint:report": "turbo run lint:report",
"typecheck": "turbo run typecheck",
"test": "turbo run test"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@deploysentinel/playwright": "^0.3.4",
"@playwright/test": "^1.33.0",
"commitizen": "^4.3.0",
"dotenv-cli": "7.2.1",
"husky": "^8.0.3",
"install": "^0.13.0",
"rimraf": "^5.0.1",
"syncpack": "^9.8.6",
"tsx": "^3.12.7",
"turbo": "^1.10.13",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@types/memoizee": "^0.4.8"
}
}