-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "@lifeomic/one-query",
"version": "0.0.0",
"description": "Ergonomic wrappers for making REST operations from a React app.",
"main": "index.js",
"repository": "[email protected]:lifeomic/one-query.git",
"author": "LifeOmic <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint src",
"test": "jest",
"build": "node build.js"
},
"peerDependencies": {
"@tanstack/react-query": ">=5.0.0",
"axios": "*"
},
"devDependencies": {
"@lifeomic/eslint-config-standards": "^3.0.1",
"@lifeomic/typescript-config": "^2.0.0",
"@tanstack/react-query": "^5.20.1",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.0",
"@types/lodash": "^4.14.186",
"@types/react": "^18.0.21",
"@types/uuid": "^8.3.4",
"axios": "^1.6.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.2.1",
"jest-environment-jsdom": "^29.2.1",
"msw": "^1.0.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4",
"uuid": "^9.0.0"
},
"dependencies": {
"immer": "^9.0.15",
"lodash": "^4.17.21"
}
}