forked from excalidraw/excalidraw-libraries
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 708 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"dependencies": {
"@excalidraw/prettier-config": "1.0.2",
"http-server": "^14.1.0",
"node-static": "0.7.11",
"prettier": "2.5.1"
},
"license": "MIT",
"prettier": "@excalidraw/prettier-config",
"scripts": {
"start": "node index.js",
"dev": "http-server .",
"build": "yarn build:key && yarn format",
"build:stats": "python3 stats.py",
"build:key": "python3 key.py",
"format": "yarn format:prettier && yarn format:python",
"format:prettier": "prettier . --write",
"format:python": "black .",
"postinstall": "pip install --upgrade google-api-python-client oauth2client black",
"validate:libraries": "node ./scripts/validate-libraries.js"
}
}