-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
package.json
91 lines (91 loc) · 2.84 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
88
89
90
91
{
"name": "polaris",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=20.10.0"
},
"scripts": {
"build": "turbo run build",
"build:release": "turbo run build --filter='!polaris.shopify.com'",
"dev": "turbo run dev --filter=@shopify/polaris --parallel",
"lint": "turbo run lint",
"test": "turbo run test",
"test:watch": "jest --watch",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier . --write",
"type-check": "tsc --build",
"changeset": "changeset",
"gen-assets": "turbo run gen-assets --filter=polaris.shopify.com",
"version-packages": "changeset version && pnpm install --lockfile-only",
"release-packages": "pnpm build:release && changeset publish",
"new-migration": "pnpm --filter=@shopify/polaris-migrator generate"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@changesets/changelog-github": "^0.4.4",
"@changesets/cli": "^2.23.0",
"@changesets/get-release-plan": "^3.0.14",
"@next/eslint-plugin-next": "^12.1.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-image": "^3.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-virtual": "^3.0.1",
"@rollup/pluginutils": "^5.0.2",
"@shopify/eslint-plugin": "^42.0.1",
"@shopify/stylelint-plugin": "^11.0.0",
"@shopify/typescript-configs": "^5.1.0",
"@size-limit/preset-small-lib": "^5.0.3",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.0",
"babel-loader": "^9.1.2",
"eslint": "^8.3.0",
"eslint-plugin-storybook": "^0.8.0",
"execa": "^5.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-stylelint": "^5.0.3",
"jest-watch-typeahead": "^2.2.2",
"js-yaml": "^4.1.0",
"npm-run-all": "^4.1.5",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.5.0",
"rollup": "^3.12.0",
"rollup-plugin-node-externals": "^5.1.0",
"size-limit": "^5.0.3",
"stylelint": "^14.15.0",
"ts-node": "^10.7.0",
"turbo": "^1.11.1",
"typescript": "^4.9.3"
},
"size-limit": [
{
"name": "polaris-react-cjs",
"path": "polaris-react/build/cjs/index.js",
"limit": "250 kB"
},
{
"name": "polaris-react-esm",
"path": "polaris-react/build/esm/index.js",
"limit": "165 kB"
},
{
"name": "polaris-react-esnext",
"path": "polaris-react/build/esnext/index.esnext",
"limit": "225 kB"
},
{
"name": "polaris-react-css",
"path": "polaris-react/build/esm/styles.css",
"limit": "50 kB"
}
]
}