-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 823 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 823 Bytes
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
{
"private": true,
"workspaces": [
"examples/*",
"reactus"
],
"scripts": {
"build": "yarn --cwd reactus build",
"express": "yarn --cwd examples/with-express",
"fastify": "yarn --cwd examples/with-fastify",
"hapi": "yarn --cwd examples/with-hapi",
"http": "yarn --cwd examples/with-http",
"koa": "yarn --cwd examples/with-koa",
"nest": "yarn --cwd examples/with-nest",
"restify": "yarn --cwd examples/with-restify",
"tailwind": "yarn --cwd examples/with-tailwind",
"unocss": "yarn --cwd examples/with-unocss",
"report": "yarn --cwd reactus report",
"test": "yarn --cwd reactus test",
"www:build": "node ./www/build.mjs",
"www:serve": "node ./www/serve.mjs",
"www:check": "node ./www/check.mjs"
},
"devDependencies": {
"nyc": "17.1.0"
}
}