-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 999 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 999 Bytes
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
{
"name": "@geti/core",
"version": "1.0.0",
"main": "index.ts",
"dependencies": {
"axios": "^1.10.0"
},
"devDependencies": {
"@geti/config": "*",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.16.3",
"eslint": "^9.31.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^28.14.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "^29.7.0",
"typescript": "^5.8.3"
},
"type": "module",
"scripts": {
"test:unit": "jest --config jest.config.js --watchAll=false",
"type-check": "tsc --noEmit -p tsconfig.json",
"lint": "eslint \"src/**/*.ts*\" --max-warnings 0",
"lint:fix": "eslint --fix \"./src/**/*.ts*\""
},
"description": "Contains api client, queries and mutations."
}