-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
28 lines (28 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"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"
}
}