-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.06 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
{
"name": "familiada",
"version": "0.0.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/ChromeGG/familiada.git"
},
"license": "MIT",
"author": {
"name": "Adam Tkaczyk",
"email": "[email protected]",
"url": "https://tkaczyk.dev"
},
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"start:api": "pnpm --filter api run start",
"start:web": "pnpm --filter web run start",
"migrate": "pnpm --filter api run migrate:dev",
"prepare": "pnpm husky install",
"type-check": "turbo run type-check"
},
"dependencies": {},
"devDependencies": {
"eslint-config-custom": "workspace:*",
"husky": "8.0.3",
"lint-staged": "13.2.1",
"prettier": "2.8.8",
"turbo": "1.9.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "18.15.0"
},
"volta": {
"node": "18.15.0"
}
}