-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.26 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
{
"name": "aperturs-app",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev": "turbo dev --parallel",
"dev:app": "turbo dev --filter @aperturs/app",
"dev:landing": "turbo dev --filter @aperturs/landing",
"studio": "pnpm run -r studio",
"format": "turbo format --continue -- --cache --cache-location node_modules/.cache/.prettiercache",
"format:fix": "turbo format --continue -- --write --cache --cache-location node_modules/.cache/.prettiercache",
"lint": "turbo lint --continue -- --cache --cache-location node_modules/.cache/.eslintcache",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location node_modules/.cache/.eslintcache",
"lint:ws": "pnpm dlx sherif@latest",
"lint:ws:fix": "pnpm dlx sherif@latest --fix",
"typecheck": "turbo typecheck",
"prepare": "husky install"
},
"devDependencies": {
"@aperturs/prettier-config": "workspace:^0.1.0",
"dotenv-cli": "^7.3.0",
"husky": "^9.0.0",
"prettier": "^3.2.5",
"turbo": "^2.1.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"prettier": "@aperturs/prettier-config"
}