-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.71 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.71 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
35
36
37
38
39
{
"private": true,
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"build": "yarn build:ink && yarn build:css && yarn build:esbuild && yarn build:loader && yarn build:dev && yarn build:express && yarn build:tailwind && yarn build:ui",
"build:ink": "yarn --cwd packages/ink build",
"build:css": "yarn --cwd packages/ink-css build",
"build:dev": "yarn --cwd packages/ink-dev build",
"build:esbuild": "yarn --cwd packages/ink-esbuild build",
"build:loader": "yarn --cwd packages/ink-loader build",
"build:express": "yarn --cwd packages/ink-express build",
"build:tailwind": "yarn --cwd packages/ink-tailwind build",
"build:ui": "yarn --cwd packages/ink-ui-src build",
"build:web": "yarn --cwd packages/ink-web build",
"report": "nyc yarn test && nyc report -r lcov",
"test": "yarn test:ink && yarn test:css",
"test:ink":"yarn --cwd packages/ink test",
"test:css": "yarn --cwd packages/ink-css test",
"test:web": "yarn --cwd packages/ink-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:whatwg": "yarn --cwd examples/with-whatwg dev",
"dev:web": "yarn --cwd packages/ink-web dev",
"start": "yarn --cwd packages/ink-web start"
},
"devDependencies": {
"nyc": "17.1.0"
}
}