-
Notifications
You must be signed in to change notification settings - Fork 376
/
Copy pathpackage.json
52 lines (52 loc) · 1.4 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
{
"name": "@linode/shared",
"version": "0.2.0",
"description": "Linode shared feature component library",
"main": "src/index.ts",
"module": "src/index.ts",
"types": "src/index.ts",
"author": "Linode",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/linode/manager/tree/develop/packages/shared"
},
"exports": {
".": "./src/index.ts"
},
"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",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --ext .js,.ts,.tsx --quiet"
]
},
"dependencies": {
"@linode/api-v4": "workspace:*",
"@linode/queries": "workspace:*",
"@linode/ui": "workspace:*",
"@linode/utilities": "workspace:*",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@storybook/addon-actions": "^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/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"vite-plugin-svgr": "^3.2.0"
}
}