generated from Dhaiwat10/react-library-starter
-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathpackage.json
61 lines (61 loc) · 1.83 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
{
"name": "@web3-ui/root",
"license": "MIT",
"version": "0.0.0",
"private": true,
"author": "Developer DAO",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev --no-cache --filter=playground... --no-deps",
"dev:docs": "turbo run dev --no-cache --filter=docs... --no-deps",
"storybook": "turbo run sb --filter=storybook... --no-deps",
"test": "yarn workspace @web3-ui/components test",
"test:coverage": "yarn workspace @web3-ui/components test --coverage",
"test:watch": "yarn workspace @web3-ui/components test --watch",
"test:turbo": "turbo run test",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"build": "turbo run build",
"build:docs": "turbo run build --filter=docs...",
"build-storybook": "yarn workspace storybook build-storybook",
"clean": "turbo run clean",
"clean-windows": "turbo run clean-windows",
"prepare": "husky install",
"build:old": "preconstruct build",
"postinstall": "preconstruct dev",
"chromatic": "chromatic --exit-zero-on-changes",
"update-version": "changeset",
"version-packages": "changeset version",
"release": "turbo run build --filter=@web3-ui/components^... && changeset publish"
},
"dependencies": {},
"devDependencies": {
"@changesets/changelog-github": "^0.4.2",
"@changesets/cli": "^2.18.1",
"@preconstruct/cli": "^2.2.0",
"chromatic": "^6.7.0",
"eslint-config-custom": "*",
"husky": "^7.0.4",
"lint-staged": "^12.1.3",
"prettier": "latest",
"turbo": "^1.4.3"
},
"lint-staged": {
"*.{ts,tsx,md,json}": [
"prettier --write"
]
},
"preconstruct": {
"packages": [
"packages/components/*"
]
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}