-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.8 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "plexus-monorepo",
"version": "1.0.0",
"repository": "git@github.com:plexusjs/plexus",
"author": "Philippe Clesca <hello@philippec.me>",
"contributors": [
"Nicolas Theck <contact@itsrems.com>"
],
"license": "MIT",
"private": true,
"scripts": {
"postinstall": "test -n \"$NO_YARN_POSTINSTALL\" || yarn run build",
"core": "bun workspace @plexusjs/core",
"react": "bun workspace @plexusjs/react",
"next": "bun workspace @plexusjs/next",
"plexus-cli": "bun workspace plexus-cli",
"docs": "bun workspace plexus-docs",
"docs:generate:ref": "bun write-documentation.ts",
"postdocs:generate:ref": "bun format --all",
"bootstrap": "lerna bootstrap --use-workspaces",
"build": "lerna run build",
"postbuild": "bun docs:generate:ref",
"dev": "lerna run build && lerna watch -- lerna run build --scope=$LERNA_PACKAGE_NAME",
"prereleaseOnly": "pinst --disable && echo '🚀 Publishing...'",
"release:canary": "lerna run build && lerna publish --preid canary --no-private --yes --force-publish --canary",
"release:stable": "lerna run build && lerna publish --preid canary --no-private --yes --force-publish",
"postrelease": "pinst --enable && echo '🎉 Published!'",
"test": "bun test",
"test-ui": "vitest --ui",
"format": "trunk fmt"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@ngneat/falso": "^6.4.0",
"@nx/webpack": "^16.7.1",
"@testing-library/react": "^14.0.0",
"@trunkio/launcher": "^1.2.3",
"@types/fs-readdir-recursive": "^1.1.0",
"@types/jsdoc-to-markdown": "^7.0.3",
"@types/node": "^18.11.11",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-test-renderer": "^18.0.0",
"@types/recursive-readdir": "^2.2.1",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/ui": "^0.34.2",
"chalk": "4",
"fs-readdir-recursive": "^1.1.0",
"happy-dom": "^10.10.4",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^8.0.0",
"jsdom": "^20.0.1",
"lerna": "^7.1.5",
"node-fetch": "2",
"nodemon": "^2.0.15",
"nx": "^16.7.1",
"pinst": "^2.1.6",
"prettier": "^2.8.0",
"react": "^18",
"react-dom": "^18",
"react-test-renderer": "^18.2.0",
"recursive-readdir": "^2.2.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.2",
"yargs": "^17.4.1",
"bun-types": "latest"
},
"workspaces": {
"packages": [
"packages/*",
"docs/",
"cli"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}