|
| 1 | +{ |
| 2 | + "name": "@codecademy/codebytes", |
| 3 | + "description": "Codebytes Code Editor", |
| 4 | + "version": "0.0.1", |
| 5 | + "author": "Codecademy Engineering <[email protected]>", |
| 6 | + "sideEffects": [ |
| 7 | + "**/*.css", |
| 8 | + "**/*.scss", |
| 9 | + "dist/**/[A-Z]**/[A-Z]*.js", |
| 10 | + "dist/**/[A-Z]**/index.js" |
| 11 | + ], |
| 12 | + "module": "./dist/index.js", |
| 13 | + "main": "./dist/index.js", |
| 14 | + "repository": { |
| 15 | + "type": "git", |
| 16 | + "url": "[email protected]:Codecademy/client-modules.git" |
| 17 | + }, |
| 18 | + "peerDependencies": { |
| 19 | + "react": ">=16.8.1", |
| 20 | + "react-dom": ">=16.8.1" |
| 21 | + }, |
| 22 | + "dependencies": { |
| 23 | + "@codecademy/gamut": "*", |
| 24 | + "@codecademy/gamut-styles": "*", |
| 25 | + "@codecademy/gamut-icons": "*", |
| 26 | + "@emotion/react": "^11.4.0", |
| 27 | + "@emotion/styled": "^11.3.0" |
| 28 | + }, |
| 29 | + "scripts": { |
| 30 | + "verify": "tsc --noEmit", |
| 31 | + "build:compile": "babel ./src --out-dir ./dist --copy-files --extensions \".ts,.tsx\"", |
| 32 | + "build:clean": "rm -rf dist", |
| 33 | + "build:types": "tsc --emitDeclarationOnly", |
| 34 | + "build": "yarn build:clean && yarn build:compile && yarn build:types", |
| 35 | + "build:watch": "yarn build && onchange ./src -- yarn build:compile && yarn build:types" |
| 36 | + }, |
| 37 | + "license": "MIT", |
| 38 | + "devDependencies": { |
| 39 | + "@emotion/jest": "^11.3.0", |
| 40 | + "@testing-library/dom": "^7.31.2", |
| 41 | + "@testing-library/react": "^11.0.4" |
| 42 | + }, |
| 43 | + "publishConfig": { |
| 44 | + "access": "public" |
| 45 | + } |
| 46 | +} |
0 commit comments