forked from iTwin/iTwinUI-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "itwinui-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:copyright": "node packages/configs/copyrightLinter.js",
"prepare": "husky install",
"format": "turbo run format",
"test": "turbo run test",
"createComponent": "node scripts/createComponent.js",
"push-docker": "yarn workspace storybook push-docker",
"clean": "turbo run clean && rimraf node_modules"
},
"dependencies": {},
"devDependencies": {
"cpy-cli": "^3.1.1",
"husky": "8",
"lint-staged": "12",
"rimraf": "^3.0.2",
"turbo": "~1.2.4",
"configs": "*"
},
"resolutions": {
"trim": "^0.0.3",
"glob-parent": "^6.0.1",
"set-value": "^4.1.0",
"ansi-regex": "^5.0.1",
"postcss": "8",
"nanoid": "^3.1.31",
"prettier": "2.2.1",
"trim-newlines": "^3.0.1"
},
"lint-staged": {
"*.{tsx,ts,jsx,js}": [
"prettier --write",
"node packages/configs/copyrightLinter.js --fix"
]
},
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"packageManager": "[email protected]",
"prettier": "configs/prettier-config"
}