-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 965 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
37
{
"name": "codefox",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"build": "turbo build",
"build:common": "pnpm --filter codefox-common run build",
"dev:turbo": "turbo dev",
"dev": "tmuxinator start -p .tmuxinator/dev.yml",
"lint": "eslint . --ext .js,.ts,.tsx",
"format": "prettier --write .",
"dev:backend": "turbo dev:backend",
"test": "turbo test",
"fix": "eslint . --ext .js,.ts,.tsx --fix"
},
"postinstall": "pnpm --filter codefox-common run build",
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.0.0",
"turbo": "^2.2.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"dependencies": {
"typescript": "5.6.2"
}
}