-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
36 lines (36 loc) · 943 Bytes
/
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
{
"name": "@dicedb/ui",
"version": "0.0.0",
"private": true,
"exports": {
"./button": "./src/button.tsx"
},
"scripts": {
"lint": "eslint . --max-warnings 0",
"generate:component": "turbo gen react-component",
"test": "jest",
"test:watch": "jest --watch"
},
"devDependencies": {
"@dicedb/eslint-config": "*",
"@dicedb/typescript-config": "*",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@turbo/gen": "^1.12.4",
"@types/eslint": "^8.56.5",
"@types/jest": "^29.5.13",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.3.3"
},
"dependencies": {
"react": "^18.3.1"
}
}