mermaid/package.json

119 lines
3.9 KiB
JSON
Raw Normal View History

2017-04-10 10:36:54 +02:00
{
2022-09-21 11:03:33 +02:00
"name": "mermaid-monorepo",
"private": true,
2023-04-04 14:38:09 +02:00
"version": "10.1.0",
2017-04-19 12:37:55 +02:00
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
2022-09-20 17:44:56 +02:00
"type": "module",
2023-04-22 22:04:11 +02:00
"packageManager": "pnpm@8.3.1",
"keywords": [
"diagram",
"markdown",
"flowchart",
"sequence diagram",
2017-04-19 12:37:55 +02:00
"gantt",
"class diagram",
"git graph"
],
"scripts": {
2022-11-14 10:21:23 +01:00
"build:vite": "ts-node-esm --transpileOnly .vite/build.ts",
2022-11-20 09:46:22 +01:00
"build:mermaid": "pnpm build:vite --mermaid",
"build:viz": "pnpm build:mermaid --visualize",
2023-02-10 08:58:58 +01:00
"build:types": "tsc -p ./packages/mermaid/tsconfig.json --emitDeclarationOnly && tsc -p ./packages/mermaid-example-diagram/tsconfig.json --emitDeclarationOnly",
"build:watch": "pnpm build:vite --watch",
"build": "pnpm run -r clean && pnpm build:types && pnpm build:vite",
2022-10-08 19:22:55 +02:00
"dev": "concurrently \"pnpm build:vite --watch\" \"ts-node-esm .vite/server.ts\"",
2022-09-23 16:55:30 +02:00
"release": "pnpm build",
"lint": "eslint --cache --cache-strategy content --ignore-path .gitignore . && pnpm lint:jison && prettier --cache --check .",
"lint:fix": "eslint --cache --cache-strategy content --fix --ignore-path .gitignore . && prettier --write . && ts-node-esm scripts/fixCSpell.ts",
2022-11-14 10:21:23 +01:00
"lint:jison": "ts-node-esm ./scripts/jison/lint.mts",
"cypress": "cypress run",
2022-08-21 15:07:27 +02:00
"cypress:open": "cypress open",
"e2e": "start-server-and-test dev http://localhost:9000/ cypress",
"ci": "vitest run",
2022-09-23 16:55:30 +02:00
"test": "pnpm lint && vitest run",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
2022-09-23 16:55:30 +02:00
"prepublishOnly": "pnpm build && pnpm test",
2023-02-18 18:05:14 +01:00
"prepare": "husky install && pnpm build",
2021-12-08 19:30:10 +01:00
"pre-commit": "lint-staged"
},
2014-11-22 17:53:02 +01:00
"repository": {
"type": "git",
2022-09-01 16:34:06 +02:00
"url": "https://github.com/mermaid-js/mermaid"
2014-11-22 17:53:02 +01:00
},
"author": "Knut Sveidqvist",
"license": "MIT",
2017-04-11 16:57:57 +02:00
"standard": {
"ignore": [
"**/parser/*.js",
"dist/**/*.js",
"cypress/**/*.js"
],
"globals": [
"page"
2017-04-11 16:57:57 +02:00
]
},
"devDependencies": {
"@applitools/eyes-cypress": "^3.27.6",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@cspell/eslint-plugin": "^6.14.2",
"@rollup/plugin-typescript": "^11.0.0",
2023-02-19 09:33:11 +01:00
"@types/cors": "^2.8.13",
"@types/eslint": "^8.4.10",
2023-02-19 09:33:11 +01:00
"@types/express": "^4.17.17",
"@types/js-yaml": "^4.0.5",
"@types/jsdom": "^21.0.0",
"@types/lodash": "^4.14.188",
"@types/mdast": "^3.0.10",
2022-11-14 10:21:23 +01:00
"@types/node": "^18.11.9",
"@types/prettier": "^2.7.1",
2022-11-20 07:43:00 +01:00
"@types/rollup-plugin-visualizer": "^4.2.1",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"@vitest/coverage-c8": "^0.30.0",
"@vitest/spy": "^0.30.0",
"@vitest/ui": "^0.30.0",
"concurrently": "^8.0.0",
2023-02-19 09:33:11 +01:00
"cors": "^2.8.5",
"coveralls": "^3.1.1",
"cypress": "^12.0.0",
"cypress-image-snapshot": "^4.0.1",
"esbuild": "^0.17.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-jsdoc": "^43.0.0",
"eslint-plugin-json": "^3.1.0",
2022-11-22 19:56:50 +01:00
"eslint-plugin-lodash": "^7.4.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-tsdoc": "^0.2.17",
"eslint-plugin-unicorn": "^46.0.0",
"express": "^4.18.2",
"globby": "^13.1.2",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jison": "^0.4.18",
"js-yaml": "^4.1.0",
"jsdom": "^21.0.0",
"lint-staged": "^13.0.3",
"path-browserify": "^1.0.1",
2023-04-22 22:04:11 +02:00
"pnpm": "^8.0.0",
"prettier": "^2.7.1",
"prettier-plugin-jsdoc": "^0.4.2",
"rimraf": "^5.0.0",
2022-11-20 07:43:00 +01:00
"rollup-plugin-visualizer": "^5.8.3",
"start-server-and-test": "^2.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0",
2023-02-18 18:05:14 +01:00
"vite": "^4.1.1",
"vitest": "^0.30.0"
},
2022-10-10 14:07:59 +02:00
"volta": {
"node": "18.16.0"
2022-10-10 14:07:59 +02:00
}
2022-11-23 11:37:58 +01:00
}