-
Notifications
You must be signed in to change notification settings - Fork 380
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.33 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.33 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": "tobiko",
"version": "0.0.0",
"scripts": {
"dev": "npm run generate:api && vite",
"build": "npm run generate:api && tsc && vite build",
"preview": "vite preview --no-open",
"prettier": "prettier --write .",
"lint:fix": "eslint --fix .",
"format": "npm run prettier && npm run lint:fix",
"test": "npm run test:unit && npm run test:e2e",
"test:unit:watch": "NODE_ENV=development vitest --watch=true",
"test:unit": "NODE_ENV=testing vitest --watch=false",
"test:e2e": "NODE_ENV=testing playwright test",
"playwright:install": "playwright install --with-deps",
"generate:api": "orval --config ./orval.config.ts"
},
"dependencies": {
"@codemirror/commands": "^6.2.2",
"@codemirror/lang-python": "^6.1.2",
"@codemirror/lang-sql": "^6.4.0",
"@codemirror/language": "^6.6.0",
"@codemirror/legacy-modes": "^6.3.2",
"@codemirror/state": "^6.2.0",
"@codemirror/view": "^6.9.4",
"@headlessui/react": "^1.7.13",
"@heroicons/react": "^2.0.17",
"@tanstack/react-query": "^4.29.1",
"@tanstack/react-table": "^8.8.5",
"@uiw/react-codemirror": "^4.19.16",
"apache-arrow": "^11.0.0",
"clsx": "^1.2.1",
"elkjs": "^0.8.2",
"pluralize": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.10.0",
"react-split": "^2.0.14",
"reactflow": "^11.7.0",
"thememirror": "^2.0.1",
"zustand": "^4.3.7"
},
"devDependencies": {
"@playwright/test": "^1.32.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/dagre": "^0.7.48",
"@types/pluralize": "^0.0.29",
"@types/react": "^18.0.34",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@vitejs/plugin-react-swc": "^3.3.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"jsdom": "^21.1.1",
"orval": "^6.12.1",
"postcss": "^8.4.21",
"prettier": "^2.8.7",
"tailwindcss": "^3.3.1",
"typescript": "^4.9.5",
"vite": "^4.2.1",
"vitest": "^0.30.1"
}
}