0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 13:43:03 -05:00
penpot-exporter-figma-plugin/package.json

53 lines
1.5 KiB
JSON
Raw Normal View History

2022-10-11 08:55:08 -05:00
{
"name": "penpot-exporter",
"version": "0.0.1",
"description": "Penpot exporter",
"type": "module",
2022-10-11 08:55:08 -05:00
"main": "code.js",
"scripts": {
"build": "webpack",
"watch": "webpack watch",
"lint": "run-p lint:*",
"lint:eslint": "eslint .",
"lint:stylelint": "stylelint src/**.css",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit --pretty false",
"fix-lint": "run-p fix-lint:*",
"fix-lint:eslint": "eslint . --fix",
"fix-lint:stylelint": "stylelint src/**.css --fix",
"fix-lint:prettier": "prettier --write ."
2022-10-11 08:55:08 -05:00
},
"author": "Kaleidos",
"license": "MPL2.0",
"dependencies": {
"react": "^18.2",
"react-dom": "^18.2",
"slugify": "^1.6"
},
2022-10-11 08:55:08 -05:00
"devDependencies": {
"@figma/eslint-plugin-figma-plugins": "^0.15",
"@figma/plugin-typings": "^1.88",
"@trivago/prettier-plugin-sort-imports": "^4.3",
"@types/react": "^18.2",
"@types/react-dom": "^18.2",
"css-loader": "^6.10",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1",
"eslint-plugin-prettier": "^5.1",
"eslint-plugin-react": "^7.34",
2022-10-11 08:55:08 -05:00
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^5.6",
"npm-run-all2": "^6.1",
"prettier": "^3.2",
"react-dev-utils": "^12.0",
"style-loader": "^3.3",
"stylelint": "^16.3",
"stylelint-config-standard": "^36.0",
"ts-loader": "^9.5",
"typescript": "^5.4",
"typescript-eslint": "^7.4",
"webpack": "^5.91",
"webpack-cli": "^5.1"
2022-10-11 08:55:08 -05:00
}
}