-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 3.01 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 3.01 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
{
"name": "ui-extensions",
"version": "0.0.0",
"private": true,
"repository": "https://github.com/Shopify/ui-extensions.git",
"workspaces": [
"./packages/*"
],
"scripts": {
"build": "loom build",
"build-consumer": "loom build && ./scripts/build-consumer.sh",
"build-consumer-spin": "loom build && ./scripts/build-consumer-spin.sh",
"clean": "git clean -xdf ./packages; rm -rf ./build",
"predeploy": "yarn build",
"deploy": "changeset publish",
"predeploy:unstable": "yarn build",
"docs:admin": "yarn workspace @shopify/ui-extensions docs:admin",
"docs:checkout": "yarn workspace @shopify/ui-extensions docs:checkout",
"docs:checkout:fast": "yarn workspace @shopify/ui-extensions docs:checkout:fast",
"docs:checkout:dev": "yarn workspace @shopify/ui-extensions docs:checkout:dev",
"docs:point-of-sale": "yarn workspace @shopify/ui-extensions docs:point-of-sale",
"docs:customer-account": "yarn workspace @shopify/ui-extensions docs:customer-account",
"deploy:unstable": "changeset version --snapshot unstable && changeset publish --tag unstable --no-git-tag",
"predeploy:internal": "yarn build",
"deploy:internal": "changeset version --snapshot internal && changeset publish --tag internal --no-git-tag",
"gen-docs:admin": "node ./packages/ui-extensions/docs/surfaces/admin/create-doc-files.js",
"lint": "loom lint",
"nuke": "rm -rf node_modules && yarn cache clean && rm -rf .loom && git clean -xdf ./packages; rm -rf ./build",
"restore-consumer": "./scripts/restore-consumer.sh",
"restore-consumer-spin": "./scripts/restore-consumer-spin.sh",
"run:ts": "babel-node --extensions .ts,.tsx,.mjs,.js,.json",
"run:ts:watch": "nodemon --ext .ts,.tsx,.mjs,.json,.graphql node_modules/.bin/babel-node --extensions .ts,.tsx,.mjs,.js,.json",
"type-check": "loom type-check",
"changeset:exit-pre-mode": "test -f .changeset/pre.json && jq -e '.mode == \"pre\"' .changeset/pre.json > /dev/null && yarn changeset pre exit || true",
"test": "loom test --no-watch",
"test:watch": "loom test",
"test:example-suites": "for dir in examples/testing/*/; do (cd \"$dir\" && npm install && npm run typecheck && npm test) || exit 1; done"
},
"devDependencies": {
"@babel/node": "^7.8.7",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.0",
"@rollup/plugin-replace": "^6.0.1",
"@shopify/babel-preset": "^24.1.0",
"@shopify/browserslist-config": "^3.0.0",
"@shopify/eslint-plugin": "^42.0.0",
"@shopify/loom": "^1.0.0",
"@shopify/loom-cli": "^1.0.0",
"@shopify/loom-plugin-build-library": "^1.0.0",
"@shopify/loom-plugin-eslint": "^2.0.0",
"@shopify/loom-plugin-prettier": "^2.0.0",
"@shopify/typescript-configs": "^5.1.0",
"eslint": "^8.28.0",
"nodemon": "^2.0.4",
"prettier": "^2.8.8",
"typescript": "^4.9.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}