-
-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 789 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 789 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
{
"name": "refref",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "infisical run --env=dev -- turbo run dev || turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"type:check": "turbo run type:check",
"test": "infisical run --env=dev -- turbo run test || turbo run test",
"test:run": "infisical run --env=dev -- turbo run test:run || turbo run test:run"
},
"devDependencies": {
"@types/bad-words": "^3.0.3",
"prettier": "^3.5.0",
"turbo": "^2.4.2",
"typescript": "5.7.3"
},
"packageManager": "pnpm@10.23.0",
"engines": {
"node": ">=20"
},
"pnpm": {
"overrides": {
"@babel/core": "7.28.5"
}
},
"dependencies": {
"bad-words": "^4.0.0"
}
}