-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.34 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
48
49
50
51
{
"workspaces": {
"packages": [
"api",
"app",
"web",
"mobile"
],
"nohoist": [
"**/react",
"**/react-native",
"**/react-native-*",
"**/react-native/**",
"**/@react-native-*/*"
]
},
"name": "auralous",
"version": "0.0.0",
"repository": "git@github.com:auralous/auralous.git",
"private": true,
"scripts": {
"lint": "eslint .",
"format": "prettier . -w --ignore-path ./.eslintignore",
"build": "yarn workspaces run build",
"build:watch": "concurrently \"yarn workspace @auralous/app run build:watch\" \"yarn workspace @auralous/api run build:watch\"",
"dev": "yarn build:watch",
"clean": "yarn workspaces run clean"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"concurrently": "^7.5.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"get-yarn-workspaces": "^1.0.2",
"pkg-dir": "^5.0.0",
"prettier": "^2.7.1",
"typescript": "^4.8.4"
},
"dependencies": {
"patch-package": "^6.5.0",
"postinstall-postinstall": "^2.1.0"
},
"resolutions": {
"@types/react": "18.0.25"
}
}