-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.35 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
42
43
44
45
46
47
48
{
"name": "prophouse",
"version": "0.0.0-development",
"description": "The Prop House Monorepo",
"license": "GPL-3.0",
"publishConfig": {
"access": "restricted"
},
"engines": {
"node": ">=18",
"pnpm": ">=7.5.1"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "turbo run build",
"build:clean": "turbo run clean:build",
"dev": "turbo run dev",
"lint-format": "turbo run --parallel lint format ",
"lint-format:fix": "turbo run --parallel lint:fix format:fix",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint . --ext .js,.ts --fix",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"test": "turbo run --parallel test",
"typecheck": "turbo run --parallel typecheck",
"prepare": "husky install"
},
"devDependencies": {
"@jest/globals": "^29.6.2",
"@swc/core": "^1.3.71",
"@swc/jest": "^0.2.27",
"@tsconfig/node-lts": "^18.12.3",
"@types/node": "^18.17.1",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"lint-staged": "^13.2.3",
"nodemon": "^3.0.1",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"turbo": "^1.10.12",
"typescript": "^5.1.6"
}
}