-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.09 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
{
"name": "hummus",
"private": true,
"workspaces": [
"packages/*"
],
"license": "MIT",
"scripts": {
"dev": "turbo dev --parallel",
"demo": "turbo run test --filter demo",
"build": "turbo build",
"clean": "rimraf node_modules",
"clean:workspaces": "turbo clean",
"db:gen": "turbo db:gen",
"db:push": "turbo db:push db:gen",
"db:seed": "turbo run db:seed --filter db",
"db:view": "turbo run db:view --filter db",
"runner": "turbo run dev --filter runner --filter api",
"test": "turbo test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo lint",
"FIXME:lint": "turbo lint && manypkg check",
"type-check": "turbo type-check"
},
"dependencies": {
"@manypkg/cli": "^0.19.2",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.1",
"prettier-plugin-tailwindcss": "^0.2.1",
"rimraf": "^4.1.2",
"turbo": "^1.9.3",
"typescript": "^4.9.4"
},
"packageManager": "yarn@1.22.19"
}