-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.1 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
{
"name": "wordigo.app",
"private": true,
"engines": {
"node": ">=v18.14.0"
},
"workspaces": [
"apps/*",
"packages/*",
"packages/**/*"
],
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev": "turbo dev --filter=...nextjs --parallel --no-cache --continue",
"dev:web": "turbo dev --parallel --filter=...nextjs --no-cache --continue",
"extension": "turbo dev --parallel --filter=...extension --no-cache --continue",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"lint": "turbo lint && manypkg check",
"lint:fix": "turbo lint:fix && manypkg fix",
"type-check": "turbo type-check"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@manypkg/cli": "^0.20.0",
"@types/prettier": "^2.7.2",
"@wordigo/eslint-config": "^0.1.0",
"eslint": "^8.38.0",
"prettier": "^2.8.7",
"prettier-plugin-tailwindcss": "^0.2.7",
"turbo": "^1.10.16",
"typescript": "^5.0.4"
},
"packageManager": "[email protected]"
}