-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (58 loc) · 1.51 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
52
53
54
55
56
57
58
59
60
{
"name": "Cards_Agains_Humanity",
"version": "1.0.0",
"description": "Monorepo for web, mobile and backend of app",
"main": "index.js",
"repository": "[email protected]:dbartoss/Cards_Against_Humanity..git",
"author": "dbartoss <[email protected]>",
"license": "MIT",
"scripts": {
"start:web-app": "lerna --scope=web-app run start",
"start:mobile": "lerna --scope=mobile run start",
"start:mobile-ios": "lerna --scope=mobile run ios",
"start:mobile-android": "lerna --scope=mobile run android",
"start:server-dev": "lerna --scope=server run start:dev",
"start:server-debug": "lerna --scope=server run start:debug"
},
"devDependencies": {
"lerna": "^3.22.1"
},
"private": true,
"workspaces": {
"packages": ["packages/*"],
"nohoist": [
"**/react-native",
"**/react-native/**",
"@nestjs/**",
"@angular-devkit/**",
"@webassemblyjs/**",
"@schematics/**",
"@nuxtjs/**",
"reflect-metadata",
"rimraf",
"rxjs",
"mongoose",
"bcrypt",
"passport**",
"helmet",
"csurf",
"express-rate-limit",
"class-validator",
"class-transformer",
"normalize-mongoose",
"@material-ui/core",
"@testing-library/jest-dom",
"@testing-library/react",
"@testing-library/user-event",
"@types/jest",
"@types/react",
"@types/react-dom",
"@types/redux-actions",
"axios",
"react**",
"redux**",
"typescript",
"prettier"
]
}
}