-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.77 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
{
"name": "dovetail-v2",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": [
"packages/*"
],
"scripts": {
"prepare": "husky install",
"postbuild": "turbo run typings",
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"lint": "eslint \"**/*.{tsx,ts}\" --fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"commit": "git cz",
"version": "conventional-changelog -i CHANGELOG.md -s -a -p @favoloso/emoji && git add CHANGELOG.md",
"bump": "conventional-recommended-bump -p @favoloso/emoji"
},
"lint-staged": {
"**/*.{ts,tsx,md}": [
"prettier --write",
"eslint"
]
},
"dependencies": {
"react": "^16.12.0",
"react-i18next": "^13.0.1"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-syntax-flow": "^7.14.5",
"@babel/plugin-transform-react-jsx": "^7.14.9",
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/cz-commitlint": "^16.0.0",
"@favoloso/conventional-changelog-emoji": "^0.10.0",
"@types/ejs": "^3.1.1",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"commitizen": "^4.0.4",
"conventional-changelog-cli": "^2.0.31",
"conventional-recommended-bump": "^6.1.0",
"eslint": "^8.25.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.28.1",
"husky": "^6.0.0",
"inquirer": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^3.0.1",
"turbo": "^1.6.3",
"typescript": "^5.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"resolutions": {
"react": "^16.12.0",
"react-dom": "^16.12.0",
"@types/react-dom": "^16.9.0",
"@types/react": "^16.9.0"
}
}