-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.12 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
{
"name": "ot-engine-worktree",
"private": true,
"description": "Operational transformation engine",
"author": "yiminghe <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:yiminghe/ot-engine.git"
},
"pnpm": {
"packageExtensions": {
"postcss-loader": {
"dependencies": {
"postcss-flexbugs-fixes": "5.x",
"postcss-preset-env": "7.x",
"postcss-normalize": "10.x"
}
}
},
"overrides": {
"react-dnd": "11.x"
}
},
"devDependencies": {
"turbo": "^1.10.16"
},
"scripts": {
"lint": "turbo run lint",
"postinstall": "cp scripts/git-hooks/pre-commit .git/hooks/pre-commit",
"format": "pnpm --filter scripts run format",
"format:staged": "pnpm run --filter scripts format:staged",
"build": "pnpm --filter rich-text-example run build",
"dev": "pnpm --filter rich-text-example run dev",
"start": "pnpm --filter rich-text-example run start",
"pub": "sh scripts/pub.sh",
"test": "echo 0"
},
"engines": {
"node": "18.x"
},
"packageManager": "[email protected]"
}