-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "excalidraw-store",
"version": "1.0.0",
"repository": "[email protected]:excalidraw/excalidraw-store.git",
"author": "Panayiotis Lipiridis <[email protected]>",
"license": "MIT",
"private": true,
"devDependencies": {
"@types/cors": "2.8.12",
"@types/express": "4.17.13",
"@types/serve-favicon": "2.5.3",
"esbuild": "0.14.9",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "2.5.1",
"ts-node-dev": "1.1.8",
"typescript": "4.5.4"
},
"dependencies": {
"@google-cloud/storage": "5.16.1",
"cors": "2.8.5",
"express": "4.17.2",
"nanoid": "3.1.30",
"serve-favicon": "2.5.0"
},
"lint-staged": {
"*.{ts,js,json,md,html,yml}": [
"prettier --write"
]
},
"scripts": {
"build": "node esbuild.js",
"deploy": "yarn build && gcloud app deploy --project excalidraw-json -q",
"deploy:dev": "yarn build && gcloud app deploy --project excalidraw-json-dev -q",
"dev": "ts-node-dev index.ts",
"fix": "yarn prettier --write",
"prepare": "husky install",
"prettier": "prettier \"**/*.{ts,js,json,md,html,yml}\" --ignore-path=.gitignore",
"start": "node index.js",
"test": "yarn prettier --list-different"
}
}