-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.02 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.02 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
{
"name": "cypress",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"cy": "cypress",
"cyo": "yarn cy open",
"cyr": "yarn cy run --component",
"dev": "next dev",
"lint": "eslint \"**/*.{ts,tsx}\" --cache --max-warnings 0",
"start": "next start"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.4.0",
"@fortawesome/free-solid-svg-icons": "^6.4.0",
"@fortawesome/react-fontawesome": "^0.2.0",
"@hookform/resolvers": "^2.9.10",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.8",
"eslint": "8.27.0",
"eslint-config-next": "13.0.2",
"next": "14.2.10",
"react": "link:../node_modules/react",
"react-dom": "link:../node_modules/react-dom",
"react-hook-form": "link:../node_modules/react-hook-form",
"react-hook-form-components": "link:../dist",
"typescript": "4.8.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"cypress": "^11.0.0"
}
}