-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.37 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
53
{
"name": "@jakub.knejzlik/ts-query",
"version": "0.9.3",
"description": "TypeScript implementation of SQL builder",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "tsc",
"build": "tsc",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jakubknejzlik/ts-query.git"
},
"keywords": [
"sql",
"query",
"builder",
"serialization"
],
"author": "Jakub Knejzlik",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakubknejzlik/ts-query/issues"
},
"homepage": "https://github.com/jakubknejzlik/ts-query#readme",
"devDependencies": {
"@storybook/addon-essentials": "^7.6.8",
"@storybook/addon-interactions": "^7.6.8",
"@storybook/addon-links": "^7.6.8",
"@storybook/addon-onboarding": "^1.0.10",
"@storybook/blocks": "^7.6.8",
"@storybook/react": "^7.6.8",
"@storybook/react-vite": "^7.6.8",
"@storybook/test": "^7.6.8",
"@types/jest": "^29.5.11",
"jest": "^29.7.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-live": "^4.1.5",
"storybook": "^7.6.8",
"ts-jest": "^29.1.1",
"vite": "^4.5.1"
},
"dependencies": {
"dayjs": "^1.11.12"
}
}