forked from iTwin/iTwinUI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.03 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
{
"name": "itwinui-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"playgrounds/*",
"internal/*"
]
},
"lint-staged": {
"*.{scss}": [
"prettier --write"
],
"*.{scss,html}": [
"stylelint --fix"
],
"*.{scss,html,js}": [
"yarn lint:copyright --fix"
],
"*.{tsx,ts,jsx,js}": [
"prettier --write",
"node scripts/copyrightLinter.js --fix"
]
},
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"test": "turbo run test",
"lint": "turbo run lint",
"format": "turbo run format",
"prepare": "husky install",
"postinstall": "patch-package",
"lint:copyright": "node scripts/copyrightLinter.js",
"createComponent": "node scripts/createComponent.js",
"approve:css": "yarn workspace @itwin/itwinui-css approve",
"approve:react": "yarn workspace storybook approve",
"clean:images": "yarn workspace @itwin/itwinui-css clean:images",
"clean": "turbo run clean && rimraf node_modules",
"release": "yarn build --filter={./packages/*}... && changeset publish"
},
"dependencies": {},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"husky": "^8.0.2",
"lint-staged": "^13.2.1",
"patch-package": "~6.5.1",
"prettier": "2.8.0",
"rimraf": "^3.0.2",
"turbo": "~1.6.3"
},
"resolutions": {
"hosted-git-info": "6.1.1",
"jimp": "0.16.2",
"trim-newlines": "3.0.1",
"minimatch": "3.1.2",
"glob-parent": "6.0.2",
"jpeg-js": "0.4.4",
"ansi-regex": "5.0.1",
"async": "3.2.4",
"trim": "0.0.3",
"set-value": "4.1.0",
"postcss": "8.4.20",
"prettier": "2.8.0",
"nanoid": "3.3.4",
"loader-utils": "2.0.4",
"autoprefixer": "10.4.13",
"yaml": "^2.2.2"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"prettier": "configs/prettier-config"
}