forked from moodlehq/design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.74 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.74 KB
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
{
"name": "@moodlehq/design-system",
"version": "1.0.0",
"description": "The Moodle Design System",
"files": [
"/dist",
"/tokens/css",
"/tokens/scss"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"./css": {
"default": "./dist/index.css"
},
"./tokens/css": {
"default": "./tokens/css/index.css"
},
"./tokens/scss": {
"default": "./tokens/scss/_index.scss"
}
},
"type": "module",
"dependencies": {
"bootstrap": "^5.3.8",
"react": "^19.2.4",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^5.0.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"@storybook/addon-a11y": "^10.1.2",
"@storybook/addon-coverage": "^3.0.0",
"@storybook/addon-docs": "^10.1.2",
"@storybook/addon-themes": "^10.1.2",
"@storybook/addon-vitest": "^10.1.2",
"@storybook/react-vite": "^10.1.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^25.0.2",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vitejs/plugin-react": "^5.1.0",
"@vitest/browser-playwright": "^4.0.14",
"@vitest/coverage-istanbul": "^4.0.14",
"bootstrap": "^5.3.8",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"eslint-plugin-storybook": "^10.1.2",
"fast-check": "^4.5.3",
"globals": "^17.1.0",
"husky": "^9.1.7",
"jsdom": "^28.0.0",
"lint-staged": "^16.2.7",
"playwright": "^1.57.0",
"prettier": "^3.7.3",
"prettier-plugin-organize-imports": "^4.3.0",
"react-bootstrap": "^2.10.10",
"react-docgen": "^8.0.2",
"react-docgen-typescript": "^2.4.0",
"sass": "^1.94.2",
"storybook": "^10.0.5",
"style-dictionary": "^5.1.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.2.6",
"vite-plugin-dts": "^4.5.4",
"vite-tsconfig-paths": "^6.0.1",
"vitest": "^4.0.4"
},
"scripts": {
"test-unit": "VITEST_STORYBOOK=false vitest run",
"test-unit-coverage": "VITEST_STORYBOOK=false vitest run --coverage",
"test-storybook": "VITEST_STORYBOOK=true vitest run",
"storybook": "storybook dev -p 6006",
"build": "tsc && vite build",
"build-storybook": "storybook build",
"build-tokens": "tsx scripts/tokens.ts",
"format": "prettier --config .github/linters/.prettierrc --ignore-path .github/linters/.prettierignore --write . '**/*.{ts,tsx,js,jsx,yml}'",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx --fix --config .github/linters/eslint.config.mjs",
"prepare": "husky"
},
"lint-staged": {
"*{js,jsx,ts,tsx}": [
"prettier --config .github/linters/.prettierrc --ignore-path .github/linters/.prettierignore --write",
"eslint --fix --config .github/linters/eslint.config.mjs"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/moodlehq/design-system.git"
},
"keywords": [
"moodle",
"design-system",
"ui-library",
"react",
"typescript",
"storybook",
"vite",
"components"
],
"author": "Moodle HQ",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/moodlehq/design-system/issues"
},
"homepage": "https://github.com/moodlehq/design-system#readme"
}