-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.44 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
{
"name": "subfire4",
"version": "4.0.4",
"description": "Monorepo of SubFire 4",
"main": "index.js",
"repository": "https://github.com/acroyear/subfire",
"author": "JWS",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"lerna": "^3.22.1",
"typedoc": "^0.22.13",
"typedoc-plugin-resolve-crossmodule-references": "^0.1.1",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.6.3"
},
"resolutions": {
"babel-loader": "8.1.0",
"webpack": "4.44.2"
},
"scripts": {
"story": "lerna run storybook --stream",
"libbuild": "yarn hooks-bundle && yarn comp-bundle && lerna run libbuild --stream",
"prestart": "yarn libbuild",
"start": "lerna run start --stream",
"comp-bundle": "cd packages/components/src && find ./components ./hooks -name \"*.*\" | grep -v .stories | grep -v '\\.d.ts' | sed \"s/^/export * from \\\"/\" | sed \"s/$/\\\"/\" | sed \"s/\\.[jt]sx*//\" > index.ts",
"hooks-bundle": "cd packages/hooks/src && find . -name \"*.*\" | grep -v '^.$' | grep -v 'index' | grep -v .stories | sed \"s/^/export * from \\\"/\" | sed \"s/$/\\\"/\" | sed \"s/\\.[jt]sx*//\" > index.ts",
"docs": "typedoc --excludeInternal --gitRemote github --excludeExternals --plugin typedoc-plugin-missing-exports --plugin typedoc-plugin-resolve-crossmodule-references --entryPointStrategy packages packages/core packages/hooks packages/components"
}
}