-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1001 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1001 Bytes
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": "datedata-front",
"description": "DateData Monorepo",
"type": "module",
"packageManager": "yarn@4.5.0",
"engines": {
"node": ">=22.0.0"
},
"workspaces": [
"config/*",
"packages/*",
"apps/*"
],
"scripts": {
"dev": "turbo run dev --filter=core",
"build:packages": "turbo build --filter=@repo/ui --filter=@repo/models",
"build": "turbo build",
"test": "turbo test",
"test:watch": "turbo test:watch",
"test:coverage": "turbo test:coverage",
"prettier": "turbo prettier",
"prettier:fix": "turbo prettier:fix",
"eslint": "turbo eslint",
"eslint:fix": "turbo eslint:fix",
"stylelint": "turbo stylelint",
"stylelint:fix": "turbo stylelint:fix",
"ts-check": "turbo ts-check",
"codestyle": "turbo codestyle",
"codestyle:fix": "turbo codestyle:fix",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"turbo": "^2.5.4"
}
}