forked from nefayran/cypress-react-vite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 960 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
{
"name": "cypress-react-vite",
"private": true,
"version": "0.0.0",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"cy:open-e2e": "cypress open --e2e --browser chrome",
"cy:open-unit": "cypress open --component --browser chrome",
"cy:run-e2e": "cypress run --e2e",
"cy:run-unit": "cypress run --component",
"cy:e2e": "start-server-and-test start http-get://localhost:3000 cy:open-e2e"
},
"dependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.0",
"@cypress/react18": "^1.1.0",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@vitejs/plugin-react": "^2.1.0",
"cypress": "^10.9.0",
"start-server-and-test": "^1.14.0",
"typescript": "^4.6.4",
"vite": "^3.1.0",
"vite-plugin-istanbul": "^3.0.1"
}
}