marko/package.json
Dylan Piercey d469bd7586
refactor: convert writeHydrate api to be closer to html impl
refactor: use common utils for dom and html translator
2021-11-02 20:29:41 -07:00

65 lines
2.2 KiB
JSON

{
"name": "fluurt",
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@commitlint/config-lerna-scopes": "^14.0.0",
"@marko/compiler": "5.17.3",
"@rollup/plugin-replace": "3.0.0",
"@types/jsdom": "^16.2.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"chalk": "^4.1.2",
"cross-env": "^7.0.3",
"esbuild": "^0.13.12",
"esbuild-register": "^3.0.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"fixpack": "^4.0.0",
"husky": "^7.0.4",
"jsdom": "^18.0.1",
"jsdom-context-require": "^4.0.2",
"lerna": "^4.0.0",
"lint-staged": "^11.2.6",
"magic-string": "^0.25.7",
"mocha": "9.1.3",
"mocha-snap": "^4.0.3",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"pretty-format": "^27.3.1",
"rollup": "^2.59.0",
"rollup-plugin-esbuild-transform": "^1.1.1",
"rollup-plugin-hypothetical": "^2.1.1",
"rollup-plugin-terser": "^7.0.2",
"table": "^6.7.2",
"typescript": "4.4.4"
},
"private": true,
"scripts": {
"build": "tsc -b && rollup -c --sourcemap",
"ci:report": "codecov",
"ci:test": "nyc yarn mocha --forbid-pending --forbid-only",
"format": "yarn lint:eslint --fix && yarn lint:prettier --write && (fixpack || true)",
"lint": "tsc -b && yarn lint:eslint && yarn lint:prettier -l && fixpack",
"lint:eslint": "eslint -f visualstudio .",
"lint:prettier": "prettier '**/*{.ts,.js,.json,.md,.yml,rc}'",
"mocha": "NODE_ENV=test mocha 'packages/*/src/**/__tests__/*.test.ts'",
"prepare": "husky install",
"prepublishOnly": "yarn build",
"release": "lerna publish",
"report": "open ./coverage/lcov-report/index.html",
"size": "cross-env SIZE=1 rollup -c ./rollup.config.js && node ./utilities/sizes.js",
"size:check": "cross-env CHECK=1 yarn size",
"size:write": "cross-env WRITE=1 yarn size && git add .sizes.json",
"test": "npm run mocha -- --watch",
"test:inspect": "npm test -- --inspect",
"test:update": "npm run mocha -- --update"
},
"workspaces": [
"packages/*"
]
}