forked from duff92/t12t-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 873 Bytes
/
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
{
"name": "t12t-workshop",
"private": true,
"version": "5.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"cy:open": "cypress open",
"cy:run": "cypress run",
"ci:e2e": "start-server-and-test dev http://localhost:5173 cy:run"
},
"dependencies": {
"@emotion/react": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "latest",
"@mui/material": "latest",
"react": "latest",
"react-dom": "latest",
"react-router-dom": "^6.26.2"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/react": "latest",
"@types/react-dom": "latest",
"@vitejs/plugin-react": "latest",
"cypress": "^13.15.0",
"cypress-axe": "^1.5.0",
"start-server-and-test": "^2.0.8",
"typescript": "latest",
"vite": "latest"
}
}