This repository has been archived by the owner on Apr 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.16 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
61
{
"name": "devon",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"patch-package": "patch-package",
"prepare": "yarn patch-package",
"dev": "run-p dev:core dev:components dev:mobile",
"lint": "yarn workspaces run lint",
"test": "yarn workspaces run test",
"build": "yarn workspaces run build",
"clean": "yarn workspaces run clean",
"clean:all": "rimraf ./**/node_modules/ && yarn clean",
"dev:core": "yarn workspace @devon/core dev",
"dev:components": "yarn workspace @devon/components dev",
"dev:mobile": "yarn workspace @devon/mobile dev",
"dev:web": "yarn workspace @devon/web dev",
"add:core": "yarn workspace @devon/core add",
"add:components": "yarn workspace @devon/components add",
"add:mobile": "yarn workspace @devon/mobile add",
"run:core": "yarn workspace @devon/core",
"run:components": "yarn workspace @devon/components",
"run:mobile": "yarn workspace @devon/mobile",
"start:mobile": "yarn run:mobile build && concurrently --kill-others \"yarn build -w\" \"yarn workspace @devon/mobile dev\"",
"start:web": "yarn run:web build && concurrently --kill-others \"yarn build -w\" \"yarn workspace @devon/web dev\"",
"start:desktop": "BROWSER=none concurrently \"yarn dev:web\" \"yarn workspace @devon/desktop compile -w\" \"wait-on http://localhost:3000 && yarn workspace @devon/desktop start\""
},
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/ts-jest",
"**/ts-jest/**",
"**/babel-jest",
"**/babel-jest/**",
"**/react-native",
"**/react-native/**",
"**/metro-react-native-babel-preset",
"**/metro-react-native-babel-preset/**"
]
},
"devDependencies": {
"@types/react-native": "0.57.43",
"concurrently": "4.1.0",
"husky": "1.3.1",
"npm-run-all": "4.1.5",
"patch-package": "5.1.2",
"postinstall-prepare": "1.0.1",
"prettier": "1.17.0",
"react-native": "npm:@brunolemos/react-native",
"tslint": "5.15.0",
"tslint-config-prettier": "1.18.0",
"tslint-react": "4.0.0",
"typescript": "3.4.3"
},
"resolutions": {
"scheduler": "0.12.0"
}
}