-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.31 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
{
"name": "monorepo",
"version": "1.0.0",
"engines": {
"node": ">=v18.17.0"
},
"packageManager": "pnpm@8.15.8",
"scripts": {
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"dev": "dotenv -- turbo dev",
"start": "dotenv -- turbo start",
"build": "dotenv -- turbo build",
"expo-update": "dotenv -- turbo update",
"lint": "dotenv -- turbo lint",
"lint:fix": "dotenv -- turbo lint:fix",
"lint:typecheck": "dotenv -- turbo lint:typecheck",
"test": "dotenv -- turbo test",
"test:watch": "dotenv -- turbo test:watch",
"db:push": "dotenv -- turbo db:push",
"db:create": "dotenv -- turbo db:create",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"format:check": "prettier --check \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"publish-packages": "turbo run build lint lint:typecheck && changeset version && changeset publish",
"prune:mobile": "dotenv -- turbo prune @ei/mobile"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"dotenv-cli": "^7.3.0",
"eslint": "^8.51.0",
"eslint-config-custom": "*",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"turbo": "^2.0.4"
}
}