-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.19 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.19 KB
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
{
"name": "signalwire-docs",
"version": "0.0.0",
"private": true,
"workspaces": [
"website",
"specs",
"tools"
],
"scripts": {
"build": "yarn --cwd website build",
"serve": "yarn --cwd website serve",
"start": "yarn --cwd website start",
"start-fresh": "yarn --cwd website start-fresh",
"start:search": "TYPESENSE_HOST=localhost TYPESENSE_EXPORTS=8108 TYPESENSE_PROTOCOL=http TYPESENSE_API_SEARCH_KEY=local-dev-api-key-12345 TYPESENSE_COLLECTION_NAME=signalwire-docs yarn --cwd website start",
"search:up": "docker compose up -d",
"search:down": "docker compose down -v",
"search:logs": "docker compose logs -f",
"build:website": "yarn --cwd website build",
"build:specs": "yarn --cwd specs build",
"build:tools": "yarn --cwd tools build",
"build:all": "yarn --cwd specs build && yarn --cwd website build",
"clean": "yarn --cwd website clean",
"install:all": "yarn install",
"postinstall": "yarn build:specs && yarn --cwd website build:plugins && yarn --cwd website build:api-docs"
},
"devDependencies": {
"typescript": "^5.5.4"
},
"resolutions": {
"@signalwire/js": "3.29.1",
"webpack-dev-server": "5.2.2"
}
}