mirror of
https://github.com/excalidraw/excalidraw-libraries-server.git
synced 2026-05-17 13:30:45 +00:00
29 lines
1.0 KiB
JSON
29 lines
1.0 KiB
JSON
{
|
|
"name": "excalidraw-libraries-automation",
|
|
"version": "1.0.0",
|
|
"description": "Automate process of excalidraw libraries",
|
|
"main": "createPullRequest.js",
|
|
"repository": "git@github.com:excalidraw/excalidraw-libraries-automation.git",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@excalidraw/eslint-config": "1.0.0",
|
|
"@excalidraw/prettier-config": "1.0.2",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-plugin-prettier": "3.3.1",
|
|
"firebase-tools": "9.1",
|
|
"prettier": "^2.3.1"
|
|
},
|
|
"prettier": "@excalidraw/prettier-config",
|
|
"scripts": {
|
|
"prettier": "prettier \"**/*.{css,scss,json,md,html,yml}\" --ignore-path=.eslintignore",
|
|
"test:code": "eslint --max-warnings=0 --ext .js,.ts,.tsx .",
|
|
"dev": "cross-env NODE_ENV=development npx firebase emulators:start",
|
|
"deploy": "npx firebase deploy --only functions:libraries",
|
|
"setup": "yarn && cd functions && yarn",
|
|
"setup:production": "yarn --production && cd functions && yarn --production"
|
|
},
|
|
"dependencies": {
|
|
"cross-env": "^7.0.3"
|
|
}
|
|
}
|