-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 718 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 718 Bytes
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
{
"name": "@html-pdf-press/monorepo",
"version": "0.3.0",
"repository": {
"type": "git",
"url": "https://github.com/sparebytes/html-pdf-press.git"
},
"author": "Franklin Davenport <sparebytes@gmail.com>",
"license": "MIT",
"private": true,
"workspaces": [
".",
"puppeteer-util",
"server",
"types"
],
"scripts": {
"build": "yarn run server build",
"dev": "yarn run server start:dev",
"debug": "yarn run server start:debug",
"server": "cd server && yarn",
"prettier": "prettier --write \"server/src/**/*.ts\"",
"standard-version": "lerna version --conventional-commits"
},
"devDependencies": {
"lerna": "^4.0.0",
"prettier": "~2.3.1"
}
}