|
| 1 | +{ |
| 2 | + "name": "@shopify/polaris-migrator", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "Codemod transformations to help upgrade your Polaris codebase", |
| 5 | + "license": "SEE LICENSE IN LICENSE.md", |
| 6 | + "author": "Shopify <[email protected]>", |
| 7 | + "homepage": "https://polaris.shopify.com", |
| 8 | + "repository": "https://github.com/Shopify/polaris", |
| 9 | + "bugs": { |
| 10 | + "url": "https://github.com/Shopify/polaris/issues" |
| 11 | + }, |
| 12 | + "publishConfig": { |
| 13 | + "access": "public", |
| 14 | + "@shopify:registry": "https://registry.npmjs.org" |
| 15 | + }, |
| 16 | + "main": "dist/cjs/index.js", |
| 17 | + "module": "dist/esm/index.mjs", |
| 18 | + "types": "dist/types/index.d.ts", |
| 19 | + "bin": "bin/migrator-cli.js", |
| 20 | + "files": [ |
| 21 | + "bin", |
| 22 | + "dist" |
| 23 | + ], |
| 24 | + "scripts": { |
| 25 | + "build": "run-s build:*", |
| 26 | + "build:js": "rollup -c", |
| 27 | + "build:types": "tsc -b", |
| 28 | + "dev": "rollup -c -w", |
| 29 | + "start": "./bin/migrator-cli.js", |
| 30 | + "lint": "TIMING=1 eslint --cache .", |
| 31 | + "test": "jest", |
| 32 | + "clean": "rm -rf .turbo node_modules dist *.tsbuildinfo" |
| 33 | + }, |
| 34 | + "dependencies": { |
| 35 | + "chalk": "^4.1.0", |
| 36 | + "globby": "11.0.1", |
| 37 | + "is-git-clean": "^1.1.0", |
| 38 | + "jscodeshift": "^0.13.1", |
| 39 | + "meow": "^9.0.0", |
| 40 | + "postcss": "^8.4.14", |
| 41 | + "postcss-scss": "^4.0.4", |
| 42 | + "postcss-value-parser": "^4.2.0" |
| 43 | + }, |
| 44 | + "devDependencies": { |
| 45 | + "@types/is-git-clean": "^1.1.0", |
| 46 | + "@types/jscodeshift": "^0.11.5", |
| 47 | + "@rollup/plugin-babel": "^5.3.1", |
| 48 | + "@rollup/plugin-commonjs": "^22.0.2", |
| 49 | + "@rollup/plugin-json": "^4.1.0", |
| 50 | + "@rollup/plugin-node-resolve": "^13.3.0", |
| 51 | + "@shopify/polaris": "^10.0.0", |
| 52 | + "prettier": "^2.7.1" |
| 53 | + } |
| 54 | +} |
0 commit comments