-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.27 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "next lint",
"prepare": "husky install",
"test": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage",
"cypress": "cypress open"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"axios": "^0.27.2",
"bulma": "^0.9.4",
"multiselect-react-dropdown": "^2.0.25",
"next": "^12.2.5",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.38.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/node": "^12.12.21",
"@types/react": "18.0.9",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.34.0",
"@typescript-eslint/parser": "^5.34.0",
"eslint": "^8.22.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "12.2.5",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"jest": "^29.0.2",
"jest-environment-jsdom": "^29.0.2",
"sass": "^1.54.5",
"typescript": "^4.7.4"
}
}