-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 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
47
{
"name": "tens",
"private": true,
"version": "0.0.1",
"author": "[email protected]",
"license": "MIT",
"scripts": {
"db-up": "docker compose up -d",
"db-nuke": "docker compose down --volumes --remove-orphans",
"db-migrate-dev": "yarn prisma migrate dev",
"dev:next": "yarn --cwd apps/next dev",
"dev:expo": "yarn --cwd apps/expo dev",
"lint": "eslint --ext \".js,.ts,.tsx\" --ignore-path .gitignore . && manypkg check",
"lint-fix": "yarn lint --fix && manypkg fix",
"dev": "run-s dev:* --print-label",
"clean": "find . -name node_modules -o -name .next -o -name .expo -type d -prune | xargs rm -rf",
"prisma-dev": "prisma migrate dev && prisma generate"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*"
]
},
"prettier": {
"printWidth": 80,
"trailingComma": "all",
"singleQuote": true
},
"dependencies": {
"@manypkg/cli": "^0.19.1",
"@prisma/client": "^4.2.1",
"@types/react": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"expo-yarn-workspaces": "^2.0.2",
"lerna": "^5.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prisma": "^4.2.1"
}
}