-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 954 Bytes
/
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
{
"private": true,
"name": "mantle",
"license": "MIT",
"packageManager": "[email protected]",
"type": "module",
"engines": {
"node": "^22.0.0"
},
"scripts": {
"build": "turbo run build",
"start": "turbo run start",
"serve": "turbo run serve",
"clean": "turbo run clean",
"fmt:check": "prettier --check .",
"fmt": "prettier --write .",
"lint": "turbo run lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo run lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"test:ui": "turbo run test:ui",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"turbo": "2.3.3"
},
"pnpm": {
"overrides": {
"cookie": ">=1.0.2",
"esbuild": ">=0.24.0"
}
}
}