forked from plasmicapp/plasmic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
173 lines (173 loc) · 7.42 KB
/
package.json
File metadata and controls
173 lines (173 loc) · 7.42 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "plasmic-monorepo",
"private": true,
"scripts": {
"prepare": "husky",
"bootstrap": "bash scripts/bootstrap.sh",
"bootstrap:platform": "yarn db:setup ; yarn setup-all ; yarn db:reset ; yarn setup-all",
"bump": "echo 'Use the jenkins job release_public_packages instead: https://jenkins.aws.plasmic.app/job/release_public_packages/'",
"claude": "echo 'Running tests before starting...' && if { [ -f /.dockerenv ] || [ -f /run/.containerenv ]; } && ! curl -s --max-time 5 https://example1.com >/dev/null 2>&1; then claude --dangerously-skip-permissions --mcp-config=.claude/.mcp.json; else echo 'Claude may only be run in a Docker container with general network firewall, see .devcontainer/README.md'; exit 1; fi",
"codex": "echo 'Running tests before starting...' && if { [ -f /.dockerenv ] || [ -f /run/.containerenv ]; } && ! curl -s --max-time 5 https://example1.com >/dev/null 2>&1; then codex --full-auto; else echo 'Codex may only be run in a Docker container with general network firewall, see .devcontainer/README.md'; exit 1; fi",
"db:reset": "cd platform/wab && yarn db:reset",
"db:setup": "cd platform/wab && yarn db:setup",
"deps": "lerna list --include-dependencies --scope",
"dev": "cd platform/wab && yarn dev",
"dev:reset": "yarn setup && yarn db:reset && yarn dev",
"format": "yarn prettier --write",
"lint": "yarn eslint --fix",
"e2e": "cd platform/wab && yarn cypress open",
"e2e:headless": "cd platform/wab && yarn cypress run",
"knip:deps": "NODE_ENV=test NODE_OPTIONS=\"--max-old-space-size=10000\" knip --include dependencies",
"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}\"",
"make": "cd platform/wab && make",
"release": "echo 'Use the jenkins job release_public_packages instead: https://jenkins.aws.plasmic.app/job/release_public_packages/'",
"setup": "yarn && yarn setup:wab && yarn setup:sub && yarn setup:react-web-bundle && yarn setup:live-frame && yarn setup:loader-bundle-env && yarn setup:loader-html-hydrate && yarn make",
"setup-all": "yarn setup && yarn setup:canvas-packages && cd platform/wab && yarn typeorm migration:run && yarn migrate-dev-bundles && yarn plume:dev update",
"setup:canvas-packages": "cd platform/canvas-packages && for d in internal_pkgs/*; do if [ -d \"$d\" ]; then cd $d && yarn && cd -; fi done && yarn && yarn build",
"setup:live-frame": "cd platform/live-frame && yarn && yarn build",
"setup:loader-bundle-env": "cd platform/loader-bundle-env && yarn",
"setup:loader-html-hydrate": "cd platform/loader-html-hydrate && yarn && yarn build && cp build/* ../wab/public/static/js/",
"setup:react-web-bundle": "cd platform/react-web-bundle && yarn && yarn build",
"setup:sub": "cd platform/sub && yarn && yarn build",
"setup:wab": "cd platform/wab && yarn",
"test": "jest $TEST_CWD",
"test:types": "tstyche $TEST_CWD",
"typecheck": "cd platform/wab && yarn ts-watch",
"upgrade-internal": "bash scripts/upgrade-internal.bash",
"msw:update": "msw init ./msw --save=false"
},
"resolutions": {
"eslint": "^8.55.0",
"jest": "29.7.0",
"sha.js": "^2.4.12"
},
"packageManager": "yarn@1.22.21",
"devDependencies": {
"@microsoft/api-extractor": "7.38.2",
"@testing-library/react": "16.2.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"esbuild": "0.17.18",
"esbuild-register": "^3.4.2",
"eslint": "^8.55.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-no-relative-import-paths": "1.5.4",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "9.1.7",
"if-env": "^1.0.4",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"knip": "5.64.1",
"lint-staged": "16.1.4",
"lerna": "9.0.3",
"msw": "2.7.3",
"msw-storybook-addon": "2.0.4",
"nx": "22.3.3",
"prettier": "2.8.8",
"prettier-plugin-organize-imports": "^4.2.0",
"tsconfig-paths": "^4.2.0",
"tstyche": "^4.3.0",
"tsx": "^4.20.6",
"typescript": "5.2.2",
"size-limit": "^11.2.0",
"@size-limit/preset-small-lib": "^11.2.0",
"storybook": "8.5.5",
"storybook-addon-mock": "5.0.0",
"@storybook/addon-essentials": "8.5.5",
"@storybook/addon-interactions": "8.5.5",
"@storybook/addon-links": "8.5.5",
"@storybook/addon-webpack5-compiler-swc": "2.1.0",
"@storybook/react": "8.5.5",
"@storybook/react-webpack5": "8.5.5",
"@storybook/test": "8.5.5",
"@storybook/test-runner": "0.21.0",
"@storybook/testing-library": "0.2.2"
},
"workspaces": [
"packages/auth-api",
"packages/auth-react",
"packages/cli",
"packages/code-merger",
"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/nextjs-app-router",
"packages/prepass",
"packages/query",
"packages/react-web",
"packages/react-web-runtime",
"packages/watcher",
"plasmicpkgs/airtable",
"plasmicpkgs/vanilla-cookieconsent",
"plasmicpkgs/antd",
"plasmicpkgs/antd5",
"plasmicpkgs/chakra-ui",
"plasmicpkgs/cms",
"plasmicpkgs/commerce-providers/*",
"plasmicpkgs/contentful",
"plasmicpkgs/dnd-kit",
"plasmicpkgs/fetch",
"plasmicpkgs/framer-motion",
"plasmicpkgs/google-maps",
"plasmicpkgs/graphql",
"plasmicpkgs/keen-slider",
"plasmicpkgs/lottie-react",
"plasmicpkgs/mailchimp",
"plasmicpkgs/plasmic-basic-components",
"plasmicpkgs/plasmic-calendly",
"plasmicpkgs/plasmic-cms",
"plasmicpkgs/plasmic-content-stack",
"plasmicpkgs/plasmic-contentful",
"plasmicpkgs/plasmic-embed-css",
"plasmicpkgs/plasmic-eventbrite",
"plasmicpkgs/plasmic-giphy",
"plasmicpkgs/plasmic-graphcms",
"plasmicpkgs/plasmic-hubspot",
"plasmicpkgs/plasmic-intercom",
"plasmicpkgs/plasmic-link-preview",
"plasmicpkgs/plasmic-nav",
"plasmicpkgs/plasmic-pigeon-maps",
"plasmicpkgs/plasmic-query",
"plasmicpkgs/plasmic-rich-components",
"plasmicpkgs/plasmic-sanity-io",
"plasmicpkgs/plasmic-soundcloud",
"plasmicpkgs/plasmic-strapi",
"plasmicpkgs/plasmic-tabs",
"plasmicpkgs/plasmic-typeform",
"plasmicpkgs/plasmic-wordpress",
"plasmicpkgs/plasmic-wordpress-graphql",
"plasmicpkgs/plasmic-yotpo",
"plasmicpkgs/radix-ui",
"plasmicpkgs/react-aria",
"plasmicpkgs/react-audio-player",
"plasmicpkgs/react-awesome-reveal",
"plasmicpkgs/react-chartjs-2",
"plasmicpkgs/react-parallax-tilt",
"plasmicpkgs/react-quill",
"plasmicpkgs/react-scroll-parallax",
"plasmicpkgs/react-slick",
"plasmicpkgs/react-twitter-widgets",
"plasmicpkgs/react-youtube",
"plasmicpkgs/rive",
"plasmicpkgs/spotify",
"plasmicpkgs/strapi",
"plasmicpkgs/tiptap",
"plasmicpkgs/wordpress",
"plasmicpkgs-dev"
]
}