-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) Β· 1.22 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
43
44
45
46
47
{
"private": true,
"name": "@brionmario/portfolio-workspace",
"version": "0.0.0-semantically-released",
"description": "Welcome to the source code for my personal website.",
"author": "Brion Mario",
"license": "MIT",
"homepage": "https://github.com/brionmario/brionmario.com#readme",
"bugs": {
"url": "https://github.com/brionmario/brionmario.com/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/brionmario/brionmario.com.git"
},
"keywords": [
"brionmario",
"portfolio",
"developer",
"workspace",
"nextjs"
],
"scripts": {
"changeset": "changeset",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,json,md,mdx}\"",
"lint": "turbo run lint",
"publish:packages": "changeset publish",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"version:packages": "changeset version"
},
"devDependencies": {
"@brionmario/eslint-plugin": "^0.2.9",
"eslint": "^8.29.0",
"eslint-config-turbo": "^0.0.7",
"turbo": "latest"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"dependencies": {
"@changesets/cli": "^2.26.2"
}
}