This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 220
/
package.json
87 lines (87 loc) · 3 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
87
{
"name": "quilt",
"version": "1.0.0",
"description": "A loosely related set of packages for JavaScript/TypeScript projects at Shopify",
"scripts": {
"build": "npm-run-all type-check build:all",
"build:all": "node ./scripts/build.mjs",
"lint": "npm-run-all lint:eslint lint:prettier",
"lint:eslint": "eslint . --max-warnings 0 --cache --cache-location '.cache/eslint'",
"lint:prettier": "prettier '**/*.{md,json,yaml,yml}' --check",
"type-check": "tsc --build",
"ci:lint-docs": "yarn generate docs && ./scripts/check-docs.sh",
"test": "jest",
"release": "tsc --build && node ./scripts/build.mjs && changeset publish",
"clean": "rimraf './packages/*/build' './packages/*/!(rollup.config).{d.ts,js,esnext,mjs}' '.cache'",
"generate": "plop",
"generate:package": "plop package && yarn plop docs",
"yalc": "yalc",
"publish:local": "tsc --build && (cd packages/$PKG_NAME && rollup -c) && yalc publish --push packages/$PKG_NAME",
"tophat": "npx nodemon --watch packages/$PKG_NAME --exec 'yarn publish:local' --ignore packages/$PKG_NAME/build --ext ts --ignore '*.d.ts' --ignore '*.test.*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/quilt.git"
},
"author": "Shopify Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/shopify/quilt/issues"
},
"homepage": "https://github.com/shopify/quilt#readme",
"private": true,
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@faker-js/faker": "^8.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@shopify/app-bridge": "^2.0.3",
"@shopify/eslint-plugin": "^45.0.0",
"@tsconfig/node-lts": "^20.1.3",
"@tsconfig/strictest": "^2.0.0",
"@tsd/typescript": "^5.4.5",
"@types/babel__core": "^7.1.7",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"babel-jest": "^29.4.2",
"babel-loader": "^8.0.6",
"core-js": "^3.14.0",
"cross-fetch": "^3.0.4",
"eslint": "^8.57.0",
"fs-extra": "^9.1.0",
"get-port": "^5.0.0",
"glob": "^7.1.6",
"graphql": "^16.8.1",
"intl-pluralrules": "^0.2.1",
"jest": "^29.4.2",
"jest-environment-jsdom": "^29.4.2",
"jest-runner-tsd": "^4.0.0",
"jest-watch-typeahead": "^2.2.2",
"npm-run-all": "^4.1.5",
"plop": "^2.6.0",
"prettier": "~3.3.2",
"puppeteer": "^13.2.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-dom18": "npm:react-dom@^18.1.0",
"react18": "npm:react@^18.1.0",
"rimraf": "^2.6.2",
"rollup": "^2.60.1",
"rollup-plugin-node-externals": "^2.2.0",
"typescript": "~5.4.5",
"yalc": "^1.0.0-pre.50"
},
"resolutions": {
"@apollo/federation": "0.38.1"
}
}