-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 915 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 915 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
{
"name": "disflow",
"packageManager": "yarn@4.12.0",
"author": {
"name": "DisFlow Team"
},
"scripts": {
"build": "turbo build",
"test": "turbo test",
"lint": "turbo run lint",
"dev": "turbo build --filter=!web-application && yarn workspace web-application dev",
"prettier": "turbo run prettier",
"prettier:check": "turbo run prettier:check",
"build:packages": "turbo build --filter=!web-application"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.1.0",
"prettier": "^3.7.4",
"tsdown": "^0.21.7",
"turbo": "^2.6.3",
"typescript": "^6.0.2",
"typescript-eslint": "^8.50.0"
},
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"dependencies": {
"@types/node": "^25.0.3"
}
}