-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "task-manager",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"testapis": "jest ./__test__/apis --watch --runInBand",
"test": "jest --watch --runInBand"
},
"dependencies": {
"@fontsource/roboto": "^4.5.8",
"@hapi/boom": "^10.0.0",
"@headlessui/react": "^1.7.3",
"@heroicons/react": "^2.0.12",
"bcryptjs": "^2.4.3",
"classnames": "^2.3.2",
"formik": "^2.2.9",
"framer-motion": "^7.6.1",
"jsonwebtoken": "^8.5.1",
"knex": "^2.3.0",
"moment": "^2.29.4",
"next": "12.3.1",
"next-connect": "^0.13.0",
"pg": "^8.8.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"swr": "^1.3.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.3",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/bcryptjs": "^2.4.2",
"@types/jest": "^29.2.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "18.8.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/whatwg-fetch": "^0.0.33",
"autoprefixer": "^10.4.12",
"eslint": "8.25.0",
"eslint-config-next": "12.3.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"msw": "^0.49.0",
"node-mocks-http": "^1.12.1",
"postcss": "^8.4.18",
"tailwindcss": "^3.2.1",
"ts-jest": "^29.0.3",
"typescript": "4.8.4",
"whatwg-fetch": "^3.6.2"
}
}