-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.37 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
{
"name": "aeropress-tracker",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch",
"cypress": "cypress open",
"cypress:headless": "cypress run",
"e2e": "start-server-and-test start http://localhost:3000 cypress",
"e2e:headless": "start-server-and-test start http://localhost:3000 cypress:headless",
"prepare": "husky install"
},
"dependencies": {
"@next-auth/prisma-adapter": "^0.5.2-next.19",
"@prisma/client": "^3.7.0",
"@reach/dialog": "^0.16.2",
"next": "^12.0.7",
"next-auth": "^4.0.5",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-feather": "^2.0.9",
"react-hook-form": "^7.22.3",
"react-timer-hook": "^3.0.5",
"swr": "^1.1.2-beta.0",
"use-dark-mode": "^2.3.1",
"use-sound": "^4.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.2",
"@types/node": "16.11.12",
"@types/react": "17.0.37",
"autoprefixer": "^10.4.0",
"cypress": "^9.4.1",
"eslint": "8.4.1",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.5.0",
"lint-staged": "^12.3.3",
"postcss": "^8.4.5",
"prettier": "2.5.1",
"prisma": "^3.7.0",
"tailwindcss": "^3.0.7",
"typescript": "4.5.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}