-
Notifications
You must be signed in to change notification settings - Fork 101
/
Copy pathpackage.json
131 lines (131 loc) · 4.62 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
{
"name": "instructure-ui",
"description": "A design system by Instructure Inc.",
"private": true,
"version": "10.10.0",
"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:commits": "commitlint --from=HEAD^1",
"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": "lint-staged && node scripts/checkTSReferences.js",
"build-storybook": "lerna run bundle --stream --scope docs-examples",
"postinstall": "husky",
"ts:check": "lerna run ts:check --stream"
},
"license": "MIT",
"resolutions": {
"react": "^18",
"react-dom": "^18",
"@types/react": "^18",
"@storybook/react/webpack": "^5"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@emotion/cache": "^11.14.0",
"@emotion/react": "^11.14.0",
"@eslint/js": "^9.16.0",
"@instructure/browserslist-config-instui": "workspace:*",
"@instructure/pkg-utils": "workspace:*",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/eslint-plugin": "^1.1.14",
"chai": "^4.4.1",
"chalk": "^4.1.2",
"commitizen": "^4.3.1",
"cross-spawn": "^7.0.6",
"cypress": "^13.16.1",
"cypress-real-events": "^1.13.0",
"cz-git": "^1.11.0",
"esbuild": "^0.24.0",
"eslint": "^9.16.0",
"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.2",
"eslint-plugin-notice": "^1.0.0",
"eslint-plugin-react": "^7.37.2",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"react": "^18.3.1",
"tar": "^7.4.3",
"typescript": "5.7.2",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.8",
"webpack": "^5.97.1"
},
"//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",
"@types/jest": "needed because https://github.com/testing-library/jest-dom/issues/544 recheck if fixed"
},
"engines": {
"node": ">=18",
"yarn": "YARN NO LONGER USED - use npm instead."
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint",
"prettier --write"
],
"*.{json,jsx,md,mdx,html}": [
"prettier --write"
]
},
"browserslist": [
"extends @instructure/browserslist-config-instui"
]
}