-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "js-monorepo",
"private": true,
"version": "0.0.11",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"docs": "turbo docs",
"lint": "turbo lint",
"test": "turbo test",
"lint:style": "turbo lint:style",
"pub:pre": "turbo pub:pre",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "rm -rf node_modules pnpm-lock.yaml .turbo && turbo clean",
"prepare": "husky"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.2",
"eslint": "^8",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"prettier": "^3.2.5",
"ts-jest": "^29.1.4",
"tsup": "^8.1.0",
"turbo": "^2.0.14",
"typedoc": "0.26.11",
"typedoc-plugin-markdown": "4.2.5"
},
"packageManager": "pnpm@9.4.0",
"engines": {
"node": ">=18"
}
}