-
-
Notifications
You must be signed in to change notification settings - Fork 176
/
Copy pathproject.json
92 lines (92 loc) · 2.48 KB
/
project.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"root": "apps/skolplattformen-app",
"sourceRoot": "apps/skolplattformen-app/src",
"projectType": "application",
"targets": {
"build": {
"executor": "@nrwl/react-native:bundle",
"outputs": ["apps/skolplattformen-app/build"],
"options": {
"entryFile": "apps/skolplattformen-app/index.js",
"platform": "ios",
"bundleOutput": "dist/apps/skolplattformen-app/ios/main.jsbundle"
}
},
"start": {
"executor": "@nrwl/react-native:start",
"options": {
"port": 8081
}
},
"serve": {
"executor": "@nrwl/workspace:run-commands",
"options": {
"command": "nx start skolplattformen"
}
},
"run-ios": {
"executor": "@nrwl/react-native:run-ios",
"options": {}
},
"bundle-ios": {
"executor": "@nrwl/react-native:bundle",
"outputs": ["apps/skolplattformen-app/build"],
"options": {
"entryFile": "apps/skolplattformen-app/index.js",
"platform": "ios",
"bundleOutput": "dist/apps/skolplattformen-app/ios/main.jsbundle"
}
},
"run-android": {
"executor": "@nrwl/react-native:run-android",
"options": {}
},
"build-android": {
"executor": "@nrwl/react-native:build-android",
"outputs": [
"apps/skolplattformen-app/android/app/build/outputs/bundle",
"apps/skolplattformen-app/android/app/build/outputs/apk"
],
"options": {}
},
"bundle-android": {
"executor": "@nrwl/react-native:bundle",
"options": {
"entryFile": "apps/skolplattformen-app/index.js",
"platform": "android",
"bundleOutput": "dist/apps/skolplattformen-app/android/main.jsbundle"
}
},
"sync-deps": {
"executor": "@nrwl/react-native:sync-deps",
"options": {}
},
"ensure-symlink": {
"executor": "@nrwl/react-native:ensure-symlink",
"options": {}
},
"lint": {
"executor": "@nrwl/linter:eslint",
"outputs": ["{options.outputFile}"],
"options": {
"lintFilePatterns": ["apps/skolplattformen-app/**/*.{ts,tsx,js,jsx}"]
}
},
"test": {
"executor": "@nrwl/jest:jest",
"outputs": ["coverage/apps/skolplattformen-app"],
"options": {
"jestConfig": "apps/skolplattformen-app/jest.config.js",
"passWithNoTests": true
}
}
},
"tags": [],
"implicitDependencies": [
"api-skolplattformen",
"api-hjarntorget",
"api",
"hooks",
"curriculum"
]
}