-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.76 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
66
{
"name": "@green-got/web-design-system",
"version": "0.0.88",
"description": "Green-Got design system",
"homepage": "https://green-got.github.io/web-design-system/",
"repository": {
"type": "git",
"url": "https://github.com/green-got/web-design-system.git"
},
"author": "fabien-h <fabien.huet@gmail.com>",
"private": false,
"main": "src/index.ts",
"types": "typings/index.d.ts",
"scripts": {
"build-docs": "node utils/build-docs.mjs",
"build": "ladle build",
"commit": "git-cz",
"dev": "ladle serve",
"format": "biome format --write .",
"lint": "biome lint --write ./src",
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm run lint && pnpm run typecheck && pnpm test",
"prepare": "husky",
"preview-build": "ladle preview",
"test": "vitest run",
"test-watch": "vitest",
"typecheck": "tsc"
},
"dependencies": {
"@ladle/react": "^4.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.7.5",
"@vitejs/plugin-react": "^4.3.2",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"sass": "^1.79.5",
"typescript": "^5.6.3",
"vite": "^5.4.9",
"vitest": "^2.1.3"
},
"engines": {
"node": ">=20.0.0"
},
"lint-staged": {
"*.{js,json,yml,yaml,css,scss,ts,tsx,md}": [
"biome format --write .",
"biome lint"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}