-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.56 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
{
"name": "react-stack",
"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",
"build:examples:markdown": "npm run build && npm run build --workspace examples/markdown",
"start:examples:markdown": "npm run start --workspace examples/markdown",
"test": "barso test",
"test:run": "barso test run",
"coverage": "barso 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": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@vitejs/plugin-react-swc": "4.3.0",
"barso": "0.6.3",
"commitizen": "4.3.1",
"cz-conventional-changelog": "3.3.0",
"husky": "9.1.7",
"lerna": "9.0.7",
"lint-staged": "16.4.0",
"rollup-plugin-preserve-directives": "0.4.0",
"vite": "7.3.0"
},
"repository": "aprendendofelipe/react-stack",
"workspaces": [
"examples/*",
"packages/*"
]
}