-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.67 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.67 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"lint:fix": "eslint '*/**/*.{js,ts,tsx}' --fix",
"bump": "yarn upgrade-interactive --latest --ignore-engines",
"test:jest": "jest",
"test:cypress": "cypress run",
"test:cypress:dev": "cypress open"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"next": "12.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"tailwindcss": "^2.2.19"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.4",
"@testing-library/cypress": "^8.0.2",
"@testing-library/jest-dom": "^5.15.1",
"@testing-library/react": "^12.1.2",
"@types/cypress": "^1.1.3",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"autoprefixer": "^10.4.0",
"babel-jest": "^27.3.1",
"cypress": "^9.0.0",
"cypress-axe": "^0.13.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-disable": "^2.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.3.1",
"postcss": "^8.3.11",
"prettier": "2.4.1",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
}
}