-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.44 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "haring-monorepo",
"private": true,
"description": "Haring Monorepo",
"license": "LGPL-3.0",
"homepage": "https://github.com/Smile-SA/haring",
"repository": {
"type": "git",
"url": "[email protected]:Smile-SA/haring.git"
},
"bugs": {
"url": "https://github.com/Smile-SA/haring/issues"
},
"author": {
"name": "Tony Cabaye",
"email": "[email protected]",
"url": "https://github.com/tonai"
},
"scripts": {
"prepare": "husky install",
"build": "turbo run build",
"build:app": "turbo run build:app",
"dev": "turbo run dev",
"lint": "turbo run lint && npm run lint:root",
"lint:root": "DEBUG=eslint:cli-engine eslint --ignore-path <(cat .gitignore .eslintignore) . && tsc --noEmit",
"lint:fix": "DEBUG=eslint:cli-engine eslint --fix --ignore-path <(cat .gitignore .eslintignore) . && tsc --noEmit",
"test": "turbo run test",
"format": "prettier --write --ignore-unknown .",
"generate": "turbo gen react-component",
"changeset": "changeset",
"version": "turbo run build lint test && changeset version",
"publish": "turbo run build lint test && changeset publish",
"prestorybook": "npm run build",
"storybook": "storybook dev -p 6006",
"storybook:no-open": "storybook dev --no-open -p 6006",
"prebuild-storybook": "npm run build",
"build-storybook": "storybook build",
"serve-storybook": "http-server storybook-static --port 6006 --silent",
"test-storybook": "test-storybook",
"wait-and-test-storybook": "wait-on http://127.0.0.1:6006/ -t 15000 && npm run test-storybook",
"serve-and-test-storybook": "concurrently -k -s first -n \"SB,TEST\" -c \"magenta,blue\" \"npm run serve-storybook\" \"npm run wait-and-test-storybook\""
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.6",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^17.7.0",
"@storybook/addon-a11y": "~7.4.1",
"@storybook/addon-essentials": "~7.4.1",
"@storybook/addon-interactions": "~7.4.1",
"@storybook/addon-links": "~7.4.1",
"@storybook/blocks": "~7.4.1",
"@storybook/jest": "~0.2.2",
"@storybook/preview-api": "~7.4.1",
"@storybook/react": "~7.4.1",
"@storybook/react-vite": "~7.4.1",
"@storybook/test-runner": "~0.13.0",
"@storybook/testing-library": "~0.2.0",
"@turbo/gen": "^1.10.13",
"concurrently": "^8.2.1",
"eslint": "^8.49.0",
"eslint-config-custom": "*",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"postcss-preset-mantine": "^1.12.3",
"postcss-simple-vars": "^7.0.1",
"prettier": "3.1.0",
"storybook": "~7.4.1",
"turbo": "^1.10.13",
"typescript": "~5.2.0",
"wait-on": "^7.0.1"
},
"dependencies": {
"@mantine/carousel": "^7.11.0",
"@mantine/form": "^7.11.0",
"@mantine/core": "^7.11.0",
"@mantine/dates": "^7.11.0",
"@mantine/dropzone": "^7.11.0",
"@mantine/hooks": "^7.11.0",
"@phosphor-icons/react": "^2.0.10",
"@smile/haring-react-shared": "*",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.1"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --write --ignore-unknown",
"*.{js,jsx,ts,tsx}": "eslint --ignore-path <(cat .gitignore .eslintignore)"
}
}