This repository was archived by the owner on Dec 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.32 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.32 KB
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
{
"private": true,
"name": "chatify",
"workspaces": [
"packages/*"
],
"nohoist": [],
"devDependencies": {
"@types/graphql": "^14.0.4",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"tslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
},
"scripts": {
"precommit": "lint-staged",
"server:dev": "yarn workspace @chatify/server dev",
"server:start": "yarn workspace @chatify/server start",
"server:clear": "yarn workspace @chatify/server clear",
"server:config:local": "yarn workspace @chatify/server config:local",
"server:build": "yarn workspace @chatify/server build:webpack",
"app:ios": "yarn workspace @chatify/app ios",
"app:codegen": "yarn workspace @chatify/app codegen",
"app:android": "yarn workspace @chatify/app android",
"app:start": "yarn workspace @chatify/app start",
"app:xcode": "yarn workspace @chatify/app xcode",
"app:studio": "yarn workspace @chatify/app studio"
},
"dependencies": {
"rimraf": "^2.6.3",
"tslint-plugin-graphql": "^0.0.6"
}
}