-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 825 Bytes
/
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
{
"name": "next-expo-trpc",
"description": "Next.js + Expo + tRPC",
"version": "1.0.0",
"author": "tomheaton",
"license": "MIT",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"dev": "dotenv -- turbo run dev",
"check": "prettier --check \"**/*.{js,jsx,ts,tsx,json}\" --ignore-path .gitignore",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\" --ignore-path .gitignore"
},
"devDependencies": {
"dotenv-cli": "^6.0.0",
"prettier": "^2.7.1",
"turbo": "^1.6.3"
},
"engineStrict": true,
"engines": {
"npm": "please use yarn!",
"yarn": ">= 1.22.10"
}
}