-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.88 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
62
63
64
65
66
{
"name": "cast-bucket",
"description": "A cross-platform podcast application",
"private": true,
"version": "0.0.1",
"author": "Shriram Balaji",
"license": "AGPL-3.0-or-later",
"scripts": {
"test": "jest",
"clean": "yarn workspaces run clean",
"build:web": "yarn workspace @cast-bucket/web build",
"dev": "yarn dev:web",
"dev:web": "yarn workspace @cast-bucket/web compile && concurrently --kill-others \"yarn workspace @cast-bucket/web compile -w\" \"yarn workspace @cast-bucket/web start\"",
"start:android": "yarn patch-package && yarn workspace @cast-bucket/mobile start",
"dev:android": "yarn workspace @cast-bucket/mobile compile && concurrently --kill-others \"yarn workspace @cast-bucket/mobile compile -w\" \"yarn workspace @cast-bucket/mobile start\"",
"eject": "react-scripts eject",
"electron": "react-scripts start & electron .",
"patch-package": "patch-package"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Shriram-Balaji/cast-bucket.git"
},
"husky": {
"hooks": {
"pre-commit": "yarn test && lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tslint --fix",
"prettier --write",
"git add"
]
},
"devDependencies": {
"@types/jest": "^24.0.18",
"concurrently": "5.0.0",
"cross-env": "6.0.3",
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.1",
"patch-package": "^6.2.0",
"postinstall-postinstall": "^2.0.0",
"prettier": "^1.18.2",
"pretty-quick": "^2.0.1",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.1.0",
"typescript": "^3.7.4"
},
"jest": {
"preset": "react-native"
},
"main": "index.electron.js",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}