-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
59 lines (59 loc) · 1.6 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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "modern-monorepo-example",
"version": "0.0.0-development",
"description": "An example of a modern Monorepo",
"author": "Luke Baker <luke.baker@live.com>",
"license": "MIT",
"keywords": [
"NPM",
"package",
"monorepo",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/bakeruk/modern-monorepo-example.git"
},
"publishConfig": {
"access": "public"
},
"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.5.0",
"@swc/core": "^1.3.41",
"@swc/jest": "^0.2.24",
"@tsconfig/node-lts-strictest": "^18.12.1",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.1.2",
"nodemon": "^2.0.21",
"prettier": "^2.8.3",
"rimraf": "^4.3.1",
"turbo": "^1.8.3",
"typescript": "^4.9.5"
}
}