forked from voiceflow/react-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.57 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
{
"version": "1.0.0",
"author": "Ben Teichman, Tyler Han",
"bugs": {
"url": "https://github.com/voiceflow/react-chat/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"@voiceflow/commitlint-config": "2.0.0",
"@voiceflow/git-branch-check": "1.4.1",
"cz-conventional-changelog": "^3.3.0",
"depcheck": "^1.4.3",
"fixpack": "^4.0.0",
"husky": "7.0.0",
"lint-staged": ">=10",
"npm-run-all": "4.1.5",
"turbo": "1.5.5",
"typescript": "4.8.4"
},
"engines": {
"node": ">=12"
},
"homepage": "https://github.com/voiceflow/react-chat#readme",
"keywords": [
"react",
"voiceflow"
],
"license": "ISC",
"packageManager": "[email protected]",
"private": true,
"publishConfig": {
"access": "public"
},
"scripts": {
"//": "Scripts to make binaries available to workspaces",
"build": "turbo run build",
"build:all": "yarn build",
"dev": "turbo run dev --parallel",
"g:run-p": "cd $INIT_CWD && run-p",
"g:tsc": "cd $INIT_CWD && tsc",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint:report": "turbo run lint:report",
"prepare": "husky install",
"setup_github_pages": "./scripts/setup_github_pages.sh",
"test:dependencies": "depcheck && turbo run test:dependencies",
"test:unit": "turbo run test:unit"
},
"volta": {
"node": "20.10.0",
"yarn": "3.2.1"
},
"workspaces": [
"packages/*"
]
}