forked from BloopAI/bloop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.46 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@bloop/root",
"private": true,
"scripts": {
"start-app": "npm --prefix apps/desktop run tauri-dev",
"start-web": "npm --prefix client run dev",
"build-app": "npm --prefix apps/desktop run tauri-build",
"build-web": "npm --prefix client run build",
"tauri": "npm --prefix apps/desktop run tauri",
"lint": "eslint client/src apps/**/src --ext ts --ext tsx --ext js --ext jsx --ext html",
"client-type-check": "npm --prefix client run type-check"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@playwright/test": "^1.28.1",
"@storybook/addon-actions": "^6.5.16",
"@storybook/addon-essentials": "^6.5.16",
"@storybook/addon-interactions": "^6.5.16",
"@storybook/addon-links": "^6.5.16",
"@storybook/builder-vite": "^0.4.2",
"@storybook/react": "^6.5.16",
"@storybook/testing-library": "^0.0.13",
"@tailwindcss/line-clamp": "^0.4.2",
"@tauri-apps/cli": "^1.2.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.0.0",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.isequal": "^4.5.6",
"@types/lodash.throttle": "^4.1.7",
"@types/node": "^18.11.18",
"@types/prismjs": "^1.26.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/react-virtualized-auto-sizer": "^1.0.1",
"@types/react-window": "^1.8.5",
"@types/remarkable": "^2.0.3",
"@types/textarea-caret": "^3.0.1",
"@types/uuid": "^9.0.1",
"@typescript-eslint/parser": "^5.42.1",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"axios-mock-adapter": "^1.21.2",
"babel-loader": "^9.1.2",
"dotenv": "^16.0.3",
"eslint": "~8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.4.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.8.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-storybook": "^0.6.4",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"postcss": "^8.4.21",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.2.7",
"tailwindcss-labeled-groups": "^0.0.2",
"ts-jest": "^29.0.5",
"typescript": "^4.8.2",
"vite": "^4.2.1",
"vite-plugin-environment": "^1.1.3",
"xhr-mock": "^2.5.1"
},
"dependencies": {
"@rive-app/react-canvas": "^3.0.38",
"@sentry/integrations": "^7.44.2",
"@sentry/react": "^7.44.1",
"@sentry/tracing": "^7.44.1",
"@tauri-apps/api": "^1.2.0",
"@tippyjs/react": "^4.2.6",
"axios": "^1.3.4",
"chart.js": "^4.2.1",
"date-fns": "^2.29.3",
"downshift": "^7.6.0",
"file-icons-js": "^1.1.0",
"framer-motion": "^10.6.1",
"highlight.js": "^11.7.0",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.throttle": "^4.1.1",
"npm-run-all": "^4.1.5",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-router-dom": "^6.9.0",
"react-virtualized-auto-sizer": "^1.0.7",
"react-window": "^1.8.8",
"remarkable": "^2.0.1",
"rudder-sdk-js": "^2.27.0",
"textarea-caret": "^3.1.0",
"timeago.js": "^4.0.2",
"uuid": "^9.0.0"
},
"volta": {
"node": "16.17.0",
"npm": "8.19.0"
}
}