marko/package.json
2024-03-11 10:40:40 -07:00

76 lines
2.7 KiB
JSON

{
"name": "marko-project",
"private": true,
"workspaces": [
"./packages/*"
],
"scripts": {
"@ci:build": "npm run build",
"@ci:format": "eslint --format unix --fix . && prettier . --write --with-node-modules --log-level=warn",
"@ci:release": "npm run build && node scripts/pkg-override && changeset publish && node scripts/pkg-override && npm ci",
"@ci:test": "cross-env NODE_OPTIONS=\"--max-old-space-size=4096\" MARKO_DEBUG=1 c8 npm test",
"@ci:version": "changeset version && npm i --package-lock-only",
"build": "npm run build --ws && tsc -b tsconfig.build.json",
"build:sizes": "node -r ~ts scripts/sizes",
"change": "changeset add",
"format": "eslint --format unix --fix .; prettier . --write --with-node-modules --log-level=warn",
"lint": "eslint --format unix . && prettier . --check --with-node-modules --log-level=warn",
"prepare": "husky",
"report": "open ./coverage/lcov-report/index.html",
"test": "mocha",
"test:update": "UPDATE_EXPECTATIONS=1 mocha --update"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@babel/register": "^7.23.7",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@ebay/browserslist-config": "^2.8.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-virtual": "^3.0.2",
"@types/babel__code-frame": "^7.0.6",
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.5",
"@types/jsdom": "^21.1.6",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"babel-plugin-minprops": "^2.0.1",
"bluebird": "^3.7.2",
"c8": "^9.1.0",
"chai": "^4.4.1",
"cross-env": "^7.0.3",
"diffable-html": "^5.0.0",
"esbuild": "^0.20.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"express": "^4.18.3",
"husky": "^9.0.11",
"it-fails": "^1.0.7",
"jsdom": "^24.0.0",
"jsdom-context-require": "^5.2.3",
"kleur": "^4.1.5",
"lint-staged": "^15.2.2",
"mocha": "^10.3.0",
"mocha-autotest": "^1.1.2",
"mocha-snap": "^5.0.0",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.4.12",
"pretty-format": "^29.7.0",
"rollup": "^4.12.1",
"table": "^6.8.1",
"through": "^2.3.8",
"through2": "^4.0.2",
"tiny-glob": "^0.2.9",
"typescript": "^5.4.2",
"~ts": "file:scripts/babel-register.js"
}
}