-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.19 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
{
"private": "true",
"name": "facebook-clone",
"version": "1.0.0",
"description": "Facebook clone using React.js, Node.js, GraphQL & TypeScript",
"main": "index.js",
"scripts": {
"postinstall": "husky install",
"start:web": "yarn workspace facebook-clone-client start",
"start:server": "yarn workspace facebook-clone-server dev",
"build:web": "yarn workspace facebook-clone-client build",
"build:server": "yarn workspace facebook-clone-server build",
"build:all": "yarn workspace facebook-clone-client build && yarn workspace facebook-clone-server build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saifulshihab/facebook-clone.git"
},
"keywords": [
"facebook-clone",
"react-facebook-clone",
"full-stack-facebook",
"react-graphql-facebook-clone"
],
"author": "Saiful Islam",
"license": "ISC",
"bugs": {
"url": "https://github.com/saifulshihab/facebook-clone/issues"
},
"homepage": "https://github.com/saifulshihab/facebook-clone#readme",
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"husky": "^7.0.4"
},
"workspaces": [
"packages/**"
]
}