-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
81 lines (81 loc) · 2.59 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
{
"name": "substra-frontend",
"repository": {
"type": "git",
"url": "https://github.com/Substra/substra-frontend.git"
},
"license": "Apache-2.0",
"private": "true",
"version": "0.51.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview --port 3001",
"eslint": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0",
"prettier": "prettier --check .",
"prettier:fix": "prettier --write .",
"prepare": "husky install",
"test:unit": "jest --passWithNoTests",
"find-deadcode": "ts-prune -e",
"find-unused-deps": "depcheck"
},
"dependencies": {
"@chakra-ui/react": "2.3.5",
"@emotion/react": "11.9.0",
"@emotion/styled": "11.11.0",
"axios": "^1.6.5",
"chart.js": "4.4.2",
"chartjs-plugin-zoom": "2.0.1",
"downshift": "8.3.3",
"framer-motion": "6.3.3",
"github-markdown-css": "5.5.1",
"html-to-image": "1.11.11",
"react": "18.2.0",
"react-chartjs-2": "5.2.0",
"react-dom": "18.1.0",
"react-flow-renderer": "10.3.17",
"react-icons": "5.2.0",
"react-markdown": "8.0.3",
"react-syntax-highlighter": "15.5.0",
"remark-gfm": "3.0.1",
"universal-cookie": "4.0.4",
"uuid": "9.0.1",
"wouter": "2.7.5",
"zustand": "4.3.2"
},
"devDependencies": {
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "13.2.0",
"@testing-library/react-hooks": "7.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "29.5.12",
"@types/node": "20.8.6",
"@types/react": "18.2.67",
"@types/react-dom": "18.0.4",
"@types/react-syntax-highlighter": "15.5.11",
"@types/uuid": "9.0.8",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.21.0",
"@vitejs/plugin-react": "2.1.0",
"assert": "2.0.0",
"buffer": "6.0.3",
"depcheck": "1.4.3",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-react-hooks": "4.5.0",
"husky": "8.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"prettier": "2.8.8",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"ts-prune": "0.10.3",
"typescript": "4.4.4",
"vite": "3.2.10",
"vite-plugin-svgr-component": "1.0.1"
},
"engines": {
"node": ">= 18.16"
}
}