-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.69 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
60
61
62
63
{
"private": true,
"name": "tsdk-monorepo",
"packageManager": "[email protected]",
"scripts": {
"lint": "pnpm -r lint",
"checktype": "pnpm -r checktype",
"test": "pnpm -r test",
"build": "pnpm -r build",
"dev": "pnpm -r dev",
"start:tsdk": "pnpm build:tsdk && pnpm --filter tsdk start",
"build:tsdk": "pnpm --filter tsdk-server-adapters --filter tsdk build",
"dev:web-example": "pnpm --filter server-example --filter web-example dev",
"dev:app-web-example": "pnpm --filter server-example --filter web-example dev",
"build:web-example": "pnpm --filter server-example --filter web-example build",
"serve:web-example": "pnpm build:web-example && pnpm --filter server-example --filter web-example serve",
"start-publish": "pnpm --filter tsdk --filter tsdk-server-adapters start-publish",
"prepare": "is-ci || husky install"
},
"devDependencies": {
"@configs/eslint-config": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"is-ci": "^3.0.1"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@babel/*",
"typescript"
]
},
"packageExtensions": {},
"overrides": {
"uuid": "^3.4.0",
"@babel/traverse": ">=7.23.2",
"xior": "^0.6.2"
}
},
"eslintConfig": {
"extends": "@configs/eslint-config",
"ignorePatterns": [
"node_modules",
".next"
]
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"singleQuote": true,
"trailingComma": "es5",
"bracketSameLine": true
},
"lint-staged": {
"*.{ts,tsx,mjs,js,mts}": [
"prettier --write",
"eslint --fix"
],
"*.{md,css}": [
"prettier --write"
]
}
}