forked from maxijonson/gpt-turbo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 826 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
{
"name": "root",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean --yes && rm -rf node_modules",
"reinstall": "npm run clean && npm i && npm run bootstrap",
"dev": "lerna run build --scope \"gpt-turbo\" && lerna watch --scope \"gpt-turbo\" --include-dependencies -- lerna run build --scope=\"gpt-turbo\"",
"build": "lerna run build",
"lint:strict": "lerna run lint:strict",
"lint:fix": "lerna run lint:fix",
"release": "npm run build && lerna publish",
"release:patch": "npm run build && lerna publish patch --yes",
"release:minor": "npm run build && lerna publish minor --yes",
"release:major": "npm run build && lerna publish major --yes"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^6.5.1"
},
"dependencies": {}
}