-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.59 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": "@mini-react-ui/root",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:adel-gu/mini-react-ui.git",
"author": "adel <adeelguitoun@gmail.com>",
"license": "MIT",
"scripts": {
"build": "nx run-many -t build",
"build:web": "nx build @mini-react-ui/website",
"build:storybook": "nx build-storybook @mini-react-ui/website",
"build:ui": "nx build @mini-react-ui/ui",
"dev:web": "nx dev @mini-react-ui/website",
"dev:storybook": "nx storybook @mini-react-ui/storybook",
"dev:ui": "nx dev @mini-react-ui/ui",
"dev": "nx run-many -t dev",
"chromatic": "nx chromatic @mini-react-ui/storybook",
"format:ui:check": "nx format:check @mini-react-ui/ui",
"format:ui": "nx format @mini-react-ui/ui",
"format:check": "nx run-many -t format:check",
"format": "nx run-many -t format",
"lint:ui": "nx lint @mini-react-ui/ui",
"lint:ui:fix": "nx lint:fix @mini-react-ui/ui",
"lint": "nx run-many -t lint",
"lint:fix": "nx run-many -t lint:fix",
"test": "nx run-many -t test",
"postinstall": "husky",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"workspaces": [
"packages/*",
"apps/*"
],
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@nx/rollup": "19.8.0",
"@nx/storybook": "19.8.0",
"@nx/vite": "19.8.0",
"@nx/web": "19.8.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nx": "19.8.0",
"prettier": "^3.3.3",
"prettier-plugin-packagejson": "^2.5.3",
"storybook": "^8.2.8"
},
"dependencies": {}
}