-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 928 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 928 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
30
31
32
33
34
35
36
{
"name": "blog",
"private": true,
"workspaces": [
"apps/site-shell"
],
"description": "Paul's get2know.io blog",
"version": "0.2.0",
"author": "Paul O'Fallon <paul@ofallonfamily.com>",
"bugs": {
"url": "https://github.com/pofallon/blog/issues"
},
"devDependencies": {
"@types/node": "^25.0.2",
"prettier": "^3.7.4",
"typescript": "^5.9.3"
},
"homepage": "https://github.com/pofallon/blog#readme",
"keywords": [
"nextjs",
"blog"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pofallon/blog.git"
},
"scripts": {
"build": "npm run build -w apps/site-shell",
"dev": "npm run dev -w apps/site-shell",
"start": "npm run start -w apps/site-shell",
"lint": "npm run lint -w apps/site-shell",
"test": "npm run test -w apps/site-shell",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\""
}
}