-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.34 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.34 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
49
50
51
{
"name": "reaptcha-monorepo",
"private": true,
"workspaces": [
"lib",
"example"
],
"scripts": {
"lint": "eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"dev": "turbo run dev --parallel --no-cache",
"build": "NODE_ENV=production turbo run build",
"version": "changeset version",
"publish": "npm run build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.21.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@testing-library/dom": "^10.0.0",
"@testing-library/react": "^16.3.2",
"@types/node": "^17.0.21",
"@types/react": "^18.0.12",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"@vitest/coverage-v8": "^4.0.18",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^8.10.0",
"eslint-plugin-react": "^7.29.2",
"husky": "^4.2.3",
"jsdom": "27.4.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"turbo": "^1.1.4",
"typescript": "~4.5.0",
"vitest": "^4.0.18"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}