forked from alfed7/ui-library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.22 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.22 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
{
"name": "@react5/ui-library-template",
"version": "1.0.0",
"description": "A template of a React UI library with a test app. It uses a monorepo structure.",
"homepage": "https://github.com/react5com/ui-library-template#readme",
"bugs": {
"url": "https://github.com/react5com/ui-library-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/react5com/ui-library-template.git"
},
"workspaces": [
"packages/lib",
"packages/app",
"packages/ui-test"
],
"license": "MIT",
"author": "React5.com",
"main": "packages/lib/dist/index.js",
"type": "module",
"module": "packages/lib/dist/esm/index.esm.js",
"types": "packages/lib/dist/types/index.d.ts",
"style": "packages/lib/dist/index.css",
"scripts": {
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"dev": "npm-run-all --parallel dev:*",
"dev:lib": "npm --workspace @react5/lib run dev",
"dev:app": "npm --workspace @react5/app run dev",
"uitest": "npm --workspace ui-test run uitest",
"storybook": "npm --workspace @react5/lib run storybook",
"plop": "npm --workspace @react5/lib run plop"
},
"devDependencies": {
"npm-run-all": "^4.1.5"
}
}