-
Notifications
You must be signed in to change notification settings - Fork 374
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "@linode/ui",
"author": "Linode",
"description": "Linode UI component library",
"version": "0.9.0",
"type": "module",
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"exports": {
".": "./src/index.ts"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/linode/manager/tree/develop/packages/ui"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@linode/design-language-system": "^4.0.0",
"@mui/icons-material": "^6.4.5",
"@mui/material": "^6.4.5",
"@mui/utils": "^6.4.3",
"@mui/x-date-pickers": "^7.27.0",
"luxon": "3.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tss-react": "^4.8.2"
},
"scripts": {
"start": "tsc -w --preserveWatchOutput",
"lint": "eslint . --quiet --ext .js,.ts,.tsx",
"typecheck": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:debug": "node --inspect-brk scripts/test.js --runInBand",
"coverage": "vitest run --coverage && open coverage/index.html",
"coverage:summary": "vitest run --coverage.enabled --reporter=junit --coverage.reporter=json-summary"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --ext .js,.ts,.tsx --quiet"
]
},
"devDependencies": {
"@storybook/addon-actions": "^8.6.7",
"@storybook/preview-api": "^8.6.7",
"@storybook/react": "^8.6.7",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "~6.4.2",
"@testing-library/react": "~16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/luxon": "3.4.2",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"vite-plugin-svgr": "^3.2.0"
}
}