-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
90 lines (90 loc) · 2.73 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
{
"name": "itwinui-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"playgrounds/*",
"internal/*",
"examples",
"testing/*"
]
},
"lint-staged": {
"*.{scss}": [
"prettier --write",
"stylelint --fix"
],
"*.{scss,html,js}": [
"pnpm lint:copyright --fix"
],
"*.{tsx,ts,jsx,js}": [
"prettier --write",
"node scripts/copyrightLinter.js --fix"
]
},
"scripts": {
"build": "turbo run build",
"dev": "NODE_ENV=development turbo run dev --concurrency=15",
"test": "node scripts/runTests.mjs",
"test:css": "pnpm run build --filter=css-workshop && pnpm --filter=css-workshop run test",
"test:react": "pnpm run build --filter=react-workshop && pnpm --filter=react-workshop run test",
"test:a11y": "pnpm run build --filter=a11y && pnpm --filter=/a11y run test",
"test:e2e": "pnpm run build --filter=e2e && pnpm --filter=e2e run test",
"test:unit": "pnpm --filter=@itwin/itwinui-react run test:unit",
"lint": "turbo run lint",
"format": "turbo run format",
"prepare": "husky install && playwright install",
"lint:copyright": "node scripts/copyrightLinter.js",
"createComponent": "node scripts/createComponent.js",
"approve": "pnpm run approve:css && pnpm run approve:react",
"approve:css": "pnpm --filter css-workshop approve",
"approve:react": "pnpm --filter react-workshop approve",
"clean": "turbo run clean && rimraf node_modules",
"changeset": "npx -y @changesets/cli",
"release": "pnpm run build --filter=\"{./packages/*}...\" && pnpm node ./scripts/publish-packages.mjs"
},
"devDependencies": {
"@itwin/itwinui-css": "workspace:*",
"@itwin/itwinui-variables": "workspace:*",
"a11y": "workspace:*",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"configs": "workspace:*",
"cypress": "13.8.1",
"e2e": "workspace:*",
"examples": "workspace:*",
"execa": "^8.0.1",
"helpers": "workspace:*",
"husky": "^9.0.10",
"lint-staged": "^15.2.9",
"octokit": "^3.1.2",
"prettier": "~3.1.0",
"rimraf": "^5.0.5",
"turbo": "~1.12.3"
},
"resolutions": {
"normalize-package-data": "^6.0.0",
"glob-parent": "^6.0.2",
"strip-ansi": "^6.0.0",
"async": "^3.2.5",
"postcss": "^8.4.34",
"prettier": "~3.1.0",
"autoprefixer": "^10.4.17",
"semver": "^7.5.4",
"typescript": "~5.5.2",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.18",
"astro": "~4.16.3",
"cypress": "13.8.1",
"ws@8": "^8.17.1",
"cookie@<0.7.0": ">=0.7.0"
},
"engines": {
"node": ">=18.14.1"
},
"packageManager": "[email protected]",
"prettier": "configs/prettier-config"
}