-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.22 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": "strudel-taskflows",
"private": true,
"version": "0.1.2",
"type": "module",
"homepage": "https://codytodonnell.github.io/strudel-kit/demo/",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"deploy": "gh-pages -d dist -e demo",
"style:all": "tsc && npm run lint && npm run prettier",
"lint": "eslint . '**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint . --fix '**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier . --check '**/*.{js,jsx,ts,tsx}'",
"prettier:fix": "prettier . --write '**/*.{js,jsx,ts,tsx}'",
"prepare": "husky ./.husky",
"cy:open": "cypress open",
"cy:test": "cypress run"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@mui/icons-material": "^5.15.14",
"@mui/lab": "^5.0.0-alpha.169",
"@mui/material": "^5.15.14",
"@mui/x-data-grid": "^7.0.0",
"@mui/x-date-pickers": "^7.0.0",
"@tanstack/react-query": "^5.51.23",
"@tanstack/react-router": "^1.109.2",
"d3-fetch": "^3.0.1",
"dayjs": "^1.11.10",
"plotly.js": "^2.30.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-plotly.js": "^2.6.0"
},
"devDependencies": {
"@tanstack/router-devtools": "^1.109.2",
"@tanstack/router-plugin": "^1.109.2",
"@types/d3-fetch": "^3.0.7",
"@types/node": "^20.12.12",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/react-plotly.js": "^2.6.3",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"cypress": "^13.15.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"gh-pages": "^6.1.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.2.2",
"vite": "^6.2.1",
"vitest": "^2.1.1"
},
"engines": {
"node": "^18.18.0 || >=20.0.0"
}
}