-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
134 lines (134 loc) · 4.92 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "instructure-ui",
"description": "A design system by Instructure Inc.",
"private": true,
"version": "10.6.1",
"author": "Instructure, Inc. Engineering and Product Design",
"repository": {
"type": "git",
"url": "https://github.com/instructure/instructure-ui.git"
},
"homepage": "https://instructure.design",
"bugs": "https://github.com/instructure/instructure-ui/issues",
"workspaces": [
"packages/*"
],
"scripts": {
"prestart": "npm run bootstrap",
"start": "npm run start --workspace=docs-app",
"start:watch": "npm run start:watch --workspace=docs-app",
"dev": "npm run start:watch",
"test": "ui-scripts test --randomize",
"cy:component": "cypress run --component",
"test:vitest": "vitest --watch=false",
"test:vitest-watch": "vitest",
"test:codemods": "vitest --watch=false --root=packages/ui-codemods",
"lint": "lerna run lint --stream",
"lint:changes": "npm run lint -- --since HEAD^",
"lint:fix": "lerna run lint:fix --stream",
"lint:commit": "commitlint --from=HEAD^1",
"lint:staged": "lint-staged",
"update:package:list": "lerna run generate:package:list --stream --scope @instructure/instui-config",
"commit:package:list": "git add packages/instui-config/package-lists/**/package-list.json",
"bootstrap": "node scripts/bootstrap.js",
"build": "lerna run build --stream",
"build:watch": "lerna run build:watch --stream",
"build:docs": "lerna run bundle --stream --scope docs-app",
"build:tokens": "ui-scripts generate-all-tokens",
"build:types": "tsc -b tsconfig.references.json",
"build:ts": "lerna run prepare-build --stream --scope @instructure/ui-icons && npm run build:types --verbose",
"clean": "node scripts/clean.js",
"clean-node": "node scripts/clean.js --nuke_node",
"export:icons": "lerna run export --stream --scope @instructure/ui-icons",
"bump": "ui-scripts bump",
"release": "ui-scripts publish",
"dev:examples": "lerna run start:watch --stream --scope docs-examples",
"prestart:examples": "npm run bootstrap",
"start:examples": "lerna run start --stream --scope docs-examples",
"husky:pre-commit": "npm run update:package:list && npm run commit:package:list && npm run lint:staged && npm run ts:check:references",
"husky:pre-push": "npm run lint:commit",
"build-storybook": "lerna run bundle --stream --scope docs-examples",
"postinstall": "husky",
"ts:check": "lerna run ts:check --stream",
"ts:check:references": "node scripts/checkTSReferences.js"
},
"license": "MIT",
"resolutions": {
"react": "^18",
"react-dom": "^18",
"@types/react": "^18",
"@storybook/react/webpack": "^5"
},
"devDependencies": {
"@babel/cli": "^7.25.6",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@emotion/cache": "^11.13.1",
"@emotion/react": "^11.13.3",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.11.1",
"@instructure/browserslist-config-instui": "workspace:*",
"@instructure/pkg-utils": "workspace:*",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/eslint__js": "^8.42.3",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/eslint-plugin": "^1.1.4",
"chai": "^4.4.1",
"chalk": "^4.1.2",
"commitizen": "^4.3.1",
"cross-spawn": "^7.0.3",
"cypress": "^13.15.0",
"cypress-real-events": "^1.13.0",
"esbuild": "^0.24.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-module-utils": "^2.12.0",
"eslint-plugin-compat": "^6.0.1",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-react": "^7.37.0",
"globals": "^15.9.0",
"husky": "^9.1.6",
"lerna": "^8.1.8",
"lint-staged": "^15.2.10",
"react": "^18.3.1",
"tar": "^7.4.3",
"typescript": "5.6.2",
"typescript-eslint": "^8.8.0",
"vitest": "^2.1.1",
"webpack": "^5.95.0"
},
"//dependency-comments": {
"danger": "^11.3.1 -- add this back if we use it in pr-validation.yml",
"chalk": "Chalk 5 is ESM. (used here by the scripts/ folder)",
"tar": "Lerna 8 needs tar for this fixed(?) bug: https://github.com/lerna/lerna/issues/4005",
"eslint-import-resolver-typescript": "^3.6.1 not supported by ESLint 9",
"eslint-plugin-import-x": "^3.1.0 not supported by ESLint 9"
},
"engines": {
"node": ">=18",
"yarn": "YARN NO LONGER USED - use npm instead."
},
"config": {
"commitizen": {
"path": "./node_modules/@instructure/cz-lerna-changelog"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint",
"prettier --write"
],
"*.{json,jsx,md,mdx,html}": [
"prettier --write"
]
},
"browserslist": [
"extends @instructure/browserslist-config-instui"
]
}