forked from plasmicapp/plasmic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.92 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
{
"name": "root",
"private": true,
"devDependencies": {
"@size-limit/preset-small-lib": "8.2.4",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"esbuild": "0.17.18",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-prettier": "4.2.1",
"if-env": "^1.0.4",
"jest": "29.5.0",
"lerna": "^6.3.0",
"prettier": "2.7.1",
"size-limit": "8.2.4",
"typescript": "5.0.4"
},
"scripts": {
"bootstrap": "yarn install --ignore-scripts && nx run-many --target=build",
"release": "echo 'Use the jenkins job release_public_packages instead: https://jenkins.aws.plasmic.app/job/release_public_packages/'",
"bump": "echo 'Use the jenkins job release_public_packages instead: https://jenkins.aws.plasmic.app/job/release_public_packages/'",
"local-canary": "yarn local-unpublish && lerna publish --canary --yes --include-merged-tags --no-git-tag-version --no-push --registry=http://localhost:4873 --force-publish",
"local-publish": "./scripts/local-publish.sh",
"local-unpublish": "lerna exec -- npm unpublish -f --registry=\"http://localhost:4873/\" \"\\${LERNA_PACKAGE_NAME}\"",
"deps": "lerna list --include-dependencies --scope",
"test": "jest $INIT_CWD"
},
"workspaces": [
"packages/auth-api",
"packages/auth-react",
"packages/cli",
"packages/create-plasmic-app",
"packages/data-sources",
"packages/data-sources-context",
"packages/host",
"packages/loader-core",
"packages/loader-edge",
"packages/loader-fetcher",
"packages/loader-gatsby",
"packages/loader-nextjs",
"packages/loader-react",
"packages/loader-splits",
"packages/loader-svelte",
"packages/loader-vue",
"packages/preamble",
"packages/prepass",
"packages/query",
"packages/react-web",
"packages/watcher",
"plasmicpkgs/airtable",
"plasmicpkgs/antd",
"plasmicpkgs/antd5",
"plasmicpkgs/chakra-ui",
"plasmicpkgs/commerce-providers/*",
"plasmicpkgs/framer-motion",
"plasmicpkgs/lottie-react",
"plasmicpkgs/plasmic-basic-components",
"plasmicpkgs/plasmic-cms",
"plasmicpkgs/plasmic-content-stack",
"plasmicpkgs/plasmic-contentful",
"plasmicpkgs/plasmic-embed-css",
"plasmicpkgs/plasmic-graphcms",
"plasmicpkgs/plasmic-nav",
"plasmicpkgs/plasmic-query",
"plasmicpkgs/plasmic-rich-components",
"plasmicpkgs/plasmic-shopify",
"plasmicpkgs/plasmic-sanity-io",
"plasmicpkgs/plasmic-strapi",
"plasmicpkgs/plasmic-swell",
"plasmicpkgs/plasmic-tabs",
"plasmicpkgs/plasmic-wordpress",
"plasmicpkgs/plasmic-wordpress-graphql",
"plasmicpkgs/react-awesome-reveal",
"plasmicpkgs/react-chartjs-2",
"plasmicpkgs/react-parallax-tilt",
"plasmicpkgs/react-scroll-parallax",
"plasmicpkgs/react-slick",
"plasmicpkgs/react-twitter-widgets",
"plasmicpkgs/react-youtube"
]
}