-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.91 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
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prepare": "husky install",
"lint": "next lint",
"eslint": "eslint --fix './**/*.{js,jsx}'",
"prettier": "prettier --write .",
"test": "jest --watch",
"test:all": "jest --watchAll",
"test:coverage": "npm run test:all -- --coverage",
"cy:open-only": "cypress open",
"cy:run-only": "cypress run",
"cy:open": "start-server-and-test dev 3000 cy:open-only",
"cy:run": "start-server-and-test dev 3000 cy:run-only"
},
"lint-staged": {
"*.{js,jsx}": "npm run eslint",
"*.{js,jsx,json,css,md,mdx}": "npm run prettier"
},
"dependencies": {
"@headlessui/react": "^1.5.0",
"dayjs": "^1.10.7",
"hsluv": "^0.1.0",
"next": "latest",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"swr": "^1.2.2",
"tw-elements": "^1.0.0-alpha11"
},
"devDependencies": {
"@cypress/mock-ssr": "github:cypress-io/cypress-mock-ssr#master",
"@next/eslint-plugin-next": "^12.1.0",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.3",
"@testing-library/react-hooks": "^7.0.2",
"autoprefixer": "^10.4.2",
"cypress": "^9.5.1",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-testing-library": "^5.0.5",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-fetch-mock": "^3.0.3",
"lint-staged": "^12.3.4",
"mockttp": "^2.6.0",
"postcss": "^8.4.7",
"prettier": "^2.5.1",
"start-server-and-test": "^1.14.0",
"tailwindcss": "^3.0.23"
}
}