forked from teamspace-inc/collabkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"private": true,
"name": "collabkit-monorepo",
"workspaces": {
"packages": [
"api",
"examples/*",
"packages/@collabkit/*",
"packages/@collabkit/test-utils",
"www",
"shape-sql"
],
"nohoist": [
"**/@ladle/react",
"**/mailing",
"**/mailing-core",
"**/@swc/helpers"
]
},
"scripts": {
"dev": "pnpm --recursive --parallel run dev",
"build": "pnpm --filter '@collabkit/react' run build && pnpm --parallel --filter '!@collabkit/react' --filter '!functions' run build",
"server": "yarn workspace server dev",
"typecheck": "tsc -b examples/demo www",
"snapshots": "yarn workspace @collabkit/react start-server-and-test dev http://localhost:61000 'playwright test'"
},
"devDependencies": {
"@types/chrome": "^0.0.193",
"npm-run-all": "^4.1.5",
"pnpm": "^7.5.0",
"prettier": "^2.6.2",
"tsx": "^3.12.1",
"typescript": "^4.9.5"
},
"prettier": {
"singleQuote": true,
"printWidth": 100
}
}