-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.19 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
{
"name": "sboard-project",
"version": "0.9.0",
"private": true,
"proxy": "http://127.0.0.1:5000/",
"author": {
"name": "Wellington R Sousa",
"email": "sousa_wellington@outlook.com"
},
"dependencies": {
"@testing-library/dom": "^8.16.0",
"axios": "^0.21.4",
"cytoscape": "^3.22.1",
"cytoscape-edgehandles": "^4.0.1",
"react": "^17.0.2",
"react-cytoscapejs": "^1.2.1",
"react-dom": "^17.0.2",
"react-dropzone": "^11.7.1",
"react-hook-form": "^7.33.1",
"react-icons": "^4.4.0",
"react-is": "^18.2.0",
"react-modal": "^3.15.1",
"react-tabs": "^3.2.3",
"react-toastify": "^8.2.0",
"readline": "^1.3.0",
"styled-components": "^5.3.5",
"uuid": "^8.3.2",
"web-vitals": "^1.1.2"
},
"devDependencies": {
"@swc/core": "^1.2.220",
"@swc/jest": "^0.2.22",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/cytoscape": "^3.19.7",
"@types/cytoscape-edgehandles": "^4.0.0",
"@types/jest": "^26.0.24",
"@types/node": "^12.20.55",
"@types/react": "^17.0.47",
"@types/react-cytoscapejs": "^1.2.2",
"@types/react-dom": "^17.0.17",
"@types/react-modal": "^3.13.1",
"@types/react-tabs": "^2.3.4",
"@types/styled-components": "^5.1.25",
"@types/testing-library__jest-dom": "^5.14.5",
"@types/uuid": "^8.3.4",
"@vitejs/plugin-react": "^1.3.2",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"vite": "^2.9.14"
},
"scripts": {
"api": "python api/app.py",
"dev": "vite",
"start": "vite",
"host": "vite --host",
"build": "tsc && vite build",
"preview": "vite preview",
"api2": "api\\sboard-env\\Scripts\\activate.bat && python api/app.py",
"test": "jest",
"testWatch": "jest --watchAll"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}