This repository was archived by the owner on Dec 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2 KB
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
{
"name": "@traceo/ui",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"lint": "eslint --ext .ts,.tsx,.js packages/**/*",
"lint:fix": "eslint --fix --ext .ts,.tsx,.js packages/**/*",
"prettier": "prettier --write --ignore-path .prettierignore packages/**/*.{js,jsx,ts,tsx}"
},
"workspaces": [
"packages/shared/*",
"packages/app"
],
"dependencies": {
"@traceo-sdk/react": "^0.32.0",
"@uiw/react-markdown-preview": "^4.1.13",
"dayjs": "^1.11.7",
"eslint-plugin-unused-imports": "^4.1.4",
"file-saver": "^2.0.5",
"positioning": "^2.0.1",
"react": "17.0.2",
"react-calendar": "^4.0.0",
"react-dom": "17.0.2",
"react-draggable": "^4.4.5",
"react-grid-layout": "^1.3.4",
"react-query": "^3.39.3",
"react-uplot": "^0.0.8",
"tailwindcss": "^3.2.1",
"uplot": "^1.6.24",
"uuid": "^9.0.0",
"web-vitals": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/node": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@types/node": "20.3.1",
"@types/react": "17.0.2",
"@types/react-dom": "18.2.5",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"eslint": "8.43.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"jest": "29.5.0",
"lerna": "7.3.1",
"postcss": "8.4.29",
"prettier": "^3.0.3",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"tsc-watch": "6.0.4",
"typescript": "4.7.4",
"url-loader": "^4.1.1",
"webpack": "^5.76.0",
"webpack-bundle-analyzer": "^4.4.2",
"webpack-cli": "^5.1.3",
"webpack-dev-server": "4.15.1",
"webpack-merge": "^5.8.0"
},
"resolutions": {
"@types/react": "17.0.2",
"@types/react-dom": "18.2.5"
}
}