-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
35 lines (35 loc) · 1.58 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
{
"private": true,
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"build:packages": "yarn build:temple && yarn build:css && yarn build:esbuild && yarn build:loader && yarn build:dev && yarn build:express && yarn build:tailwind && yarn build:ui && yarn build:web",
"build:temple": "yarn --cwd packages/temple build",
"build:css": "yarn --cwd packages/temple-css build",
"build:dev": "yarn --cwd packages/temple-dev build",
"build:esbuild": "yarn --cwd packages/temple-esbuild build",
"build:loader": "yarn --cwd packages/temple-loader build",
"build:express": "yarn --cwd packages/temple-express build",
"build:tailwind": "yarn --cwd packages/temple-tailwind build",
"build:ui": "yarn --cwd packages/temple-ui-src build",
"build:web": "yarn --cwd packages/temple-web build",
"test": "yarn --cwd packages/temple test",
"test:web": "yarn --cwd packages/temple-web test",
"dev:http": "yarn --cwd examples/with-http dev",
"dev:express": "yarn --cwd examples/with-express dev",
"dev:fastify": "yarn --cwd examples/with-fastify dev",
"dev:hapi": "yarn --cwd examples/with-hapi dev",
"dev:koa": "yarn --cwd examples/with-koa dev",
"dev:nest": "yarn --cwd examples/with-nest start:dev",
"dev:restify": "yarn --cwd examples/with-restify dev",
"dev:tailwind": "yarn --cwd examples/with-tailwind dev",
"dev:webpack": "yarn --cwd examples/with-webpack dev",
"dev:web": "yarn --cwd packages/temple-web dev",
"start": "yarn --cwd packages/temple-web start"
},
"devDependencies": {
"npm-run-all": "4.1.5"
}
}