-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "tabnews",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"dev": "npx lerna run dev --parallel",
"build": "npm run build --workspace packages/ui",
"build:examples:form": "npm run build && npm run build --workspace examples/form",
"start:examples:form": "npm run start --workspace examples/form",
"test": "tn test",
"test:run": "tn test run",
"coverage": "tn test --coverage",
"lint": "eslint . --max-warnings 0 && prettier --check .",
"format": "eslint --fix . && prettier --write .",
"commit": "cz",
"prepare": "husky",
"pre-commit": "lint-staged"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@tabnews/config": "0.2.0",
"@testing-library/dom": "10.4.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@vitejs/plugin-react-swc": "3.7.1",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.6",
"lerna": "8.1.9",
"lint-staged": "15.2.10",
"vite": "5.4.10"
},
"repository": "aprendendofelipe/tabnews",
"workspaces": [
"examples/*",
"packages/*"
]
}