-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.08 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
{
"name": "sugarform",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"lint": "turbo lint -- --max-warnings=0",
"typecheck": "turbo typecheck",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,md,json}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,md,json}\""
},
"devDependencies": {
"@manypkg/cli": "^0.21.1",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@swc/core": "^1.3.100",
"@types/multi-stage-sourcemap": "^0.3.4",
"@types/node": "^20.10.4",
"consola": "^3.2.3",
"esbuild": "^0.19.9",
"esbuild-node-externals": "^1.11.0",
"execa": "^8.0.1",
"multi-stage-sourcemap": "^0.3.1",
"prettier": "^3.1.0",
"source-map": "^0.7.4",
"tsx": "^4.6.2",
"turbo": "latest",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"manypkg": {
"ignoredRules": [
"INTERNAL_MISMATCH",
"ROOT_HAS_DEV_DEPENDENCIES",
"INVALID_DEV_AND_PEER_DEPENDENCY_RELATIONSHIP"
]
}
}