-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.5 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.5 KB
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
{
"name": "digestengine-monorepo",
"private": true,
"packageManager": "pnpm@11.1.2",
"engines": {
"node": ">=24.8.0",
"pnpm": ">=11.1.0"
},
"scripts": {
"build": "turbo run build",
"build:frontend": "turbo run build --filter=@digestengine/frontend",
"dev": "turbo run dev",
"dev:frontend": "turbo run dev --filter=@digestengine/frontend",
"lint": "turbo run lint",
"lint:style": "turbo run lint:style",
"lint:style:fix": "turbo run lint:style:fix",
"lint:fix": "turbo run lint:fix",
"typecheck": "turbo run typecheck",
"test": "turbo run test:run",
"test:all": "turbo run test:all",
"test:storybook": "turbo run test:storybook --filter=@digestengine/frontend",
"storybook": "turbo run storybook --filter=@digestengine/frontend",
"build-storybook": "turbo run build-storybook --filter=@digestengine/frontend",
"format": "turbo run format",
"format:check": "turbo run format:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webstackdev/digest-engine.git"
},
"keywords": [],
"author": "Kevin Brown <kevin@webstackdev.com>",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/webstackdev/digest-engine/issues"
},
"homepage": "https://github.com/webstackdev/digest-engine#readme",
"devDependencies": {
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"stylelint": "^17.11.0",
"stylelint-config-standard": "^40.0.0",
"turbo": "^2.9.14"
}
}