0
Fork 0
mirror of https://github.com/penpot/penpot-plugins.git synced 2025-01-06 14:50:21 -05:00
penpot-plugins/package.json

66 lines
1.9 KiB
JSON
Raw Normal View History

2024-01-29 06:39:21 -05:00
{
"name": "penpot-plugins",
"version": "0.0.0",
"license": "MIT",
2024-02-01 08:08:51 -05:00
"scripts": {
2024-02-06 06:16:28 -05:00
"start": "npx nx run plugins-runtime:serve-static --port 4200",
"start:example": "npx nx run example-plugin:serve-static --port 4201",
2024-02-22 08:40:18 -05:00
"start:rpc-api": "npx nx serve rpc-api",
2024-02-27 05:51:37 -05:00
"start:styles-example": "npx nx run example-styles:serve --port 4202",
2024-02-05 08:24:32 -05:00
"build": "npx nx build plugins-runtime --emptyOutDir=true",
"lint": "nx run-many --all --target=lint --parallel",
"lint:affected": "npx nx affected --target=lint",
2024-03-05 05:36:56 -05:00
"test": "npx nx test plugins-runtime",
2024-02-05 08:24:32 -05:00
"prepare": "husky"
2024-02-01 08:08:51 -05:00
},
2024-01-29 06:39:21 -05:00
"private": true,
"devDependencies": {
2024-02-05 08:24:32 -05:00
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
2024-02-22 08:40:18 -05:00
"@fastify/cors": "^9.0.1",
"@nx/esbuild": "18.0.2",
2024-02-06 03:07:17 -05:00
"@nx/eslint": "18.0.2",
"@nx/eslint-plugin": "18.0.2",
"@nx/js": "18.0.2",
2024-02-22 08:40:18 -05:00
"@nx/node": "^18.0.2",
2024-02-06 03:07:17 -05:00
"@nx/vite": "18.0.2",
"@nx/web": "18.0.2",
2024-02-01 08:08:51 -05:00
"@swc-node/register": "~1.6.7",
"@swc/core": "~1.3.85",
"@swc/helpers": "~0.5.2",
"@types/node": "20.11.16",
2024-02-06 03:07:17 -05:00
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitest/coverage-v8": "1.2.2",
"@vitest/ui": "1.2.2",
2024-02-22 08:40:18 -05:00
"esbuild": "^0.19.2",
2024-02-01 08:08:51 -05:00
"eslint": "~8.48.0",
"eslint-config-prettier": "^9.0.0",
2024-03-05 05:36:56 -05:00
"happy-dom": "^13.6.2",
2024-02-05 08:24:32 -05:00
"husky": "^9.0.10",
2024-02-01 08:08:51 -05:00
"jsdom": "~22.1.0",
2024-02-06 03:07:17 -05:00
"nx": "18.0.2",
2024-02-01 08:08:51 -05:00
"prettier": "^2.6.2",
"swc-loader": "0.1.15",
2024-02-22 08:40:18 -05:00
"ts-node": "10.9.1",
2024-02-01 08:08:51 -05:00
"typescript": "~5.2.2",
"vite": "^5.0.0",
"vite-plugin-dts": "~2.3.0",
2024-02-06 03:07:17 -05:00
"vitest": "1.2.2"
2024-01-29 06:39:21 -05:00
},
"workspaces": [
"packages/*"
2024-02-01 08:08:51 -05:00
],
"dependencies": {
2024-02-22 08:40:18 -05:00
"@fastify/autoload": "~5.7.1",
"@fastify/sensible": "~5.2.0",
"axios": "^1.6.0",
"fastify": "~4.13.0",
"fastify-plugin": "~4.5.0",
2024-02-06 06:16:28 -05:00
"ses": "^1.1.0",
"tslib": "^2.3.0",
2024-02-28 06:54:37 -05:00
"uuid": "^9.0.1",
2024-02-06 06:16:28 -05:00
"zod": "^3.22.4"
2024-02-01 08:08:51 -05:00
}
2024-01-29 06:39:21 -05:00
}