forked from callstack/repack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 965 Bytes
/
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
{
"name": "repack",
"packageManager": "[email protected]",
"private": true,
"workspaces": {
"packages": [
"./packages/dev-server",
"./packages/repack",
"./packages/TesterApp",
"./packages/debugger-app",
"./packages/dashboard",
"./website"
]
},
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"test": "turbo run test",
"release": "yarn build && yarn lint && yarn test && yarn changeset publish",
"website:start": "turbo run docs && yarn workspace website run start",
"website:build": "turbo run docs && yarn workspace website run export",
"TesterApp:start": "turbo run build && yarn workspace testerapp run start",
"TesterApp:bundle": "turbo run build && yarn workspace testerapp run bundle"
},
"dependencies": {
"@changesets/changelog-github": "^0.4.5",
"@changesets/cli": "^2.23.0",
"turbo": "^1.2.14"
}
}