-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.12 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
36
{
"private": true,
"description": "Template for React compnent library with demo project and automatic documentation generation",
"repository": {
"type": "git",
"url": "https://github.com/artevelde-uas/react-component-template.git"
},
"homepage": "https://github.com/artevelde-uas/react-component-template",
"packageManager": "[email protected]",
"workspaces": [
"packages/demo",
"packages/docs",
"packages/lib"
],
"scripts": {
"start": "yarn workspace demo start",
"build": "run-s build:lib build:docs build:demo",
"build:lib": "yarn workspace my-react-component build",
"build:docs": "yarn workspace docs build",
"build:demo": "yarn workspace demo build",
"watch": "yarn workspace my-react-component watch",
"dev": "run-p watch start",
"test": "yarn workspace demo test",
"lint": "yarn workspace my-react-component lint",
"clean": "yarn workspaces foreach --all run clean"
},
"resolutions": {
"stream-lines": "^1.2.1",
"through3": "^1.1.7"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.3",
"npm-run-all": "^4.1.5"
}
}