-
Notifications
You must be signed in to change notification settings - Fork 370
/
Copy pathpackage.json
52 lines (52 loc) · 1.54 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/utilities",
"version": "0.0.1",
"description": "Linode Utility functions library",
"main": "src/index.js",
"module": "src/index.ts",
"types": "src/index.ts",
"author": "Linode",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/linode/manager/tree/develop/packages/utilities"
},
"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",
"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"
]
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@linode/eslint-plugin-cloud-manager": "^0.0.7",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "~6.4.2",
"@testing-library/react": "~16.0.0",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^7.1.0",
"eslint-config-prettier": "~8.1.0",
"eslint-plugin-prettier": "~3.3.1",
"eslint-plugin-sonarjs": "^0.5.0",
"prettier": "~2.2.1"
}
}