-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "project-3",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "start-storybook -p 6006 -s public",
"build-storybook": "build-storybook -s public",
"serve-storybook": "serve storybook-static",
"type-check": "tsc",
"test": "jest"
},
"dependencies": {
"@auth0/nextjs-auth0": "^1.9.1",
"@headlessui/react": "latest",
"@headlessui/tailwindcss": "^0.1.0",
"@saeris/apollo-server-vercel": "^1.0.1",
"@tanstack/react-table": "^8.5.13",
"animate.css": "^4.1.1",
"axios": "^0.27.2",
"colors": "^1.4.0",
"html2canvas": "^1.4.1",
"jquery": "^3.6.1",
"jspdf": "^2.5.1",
"mongoose": "^6.5.4",
"next": "12.2.4",
"next-auth": "^4.10.3",
"next-compose-plugins": "^2.2.1",
"next-images": "^1.8.4",
"next-preload-headers": "^3.0.4",
"next-seo": "^5.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-draggable": "^4.4.5",
"react-icons": "^4.4.0",
"react-redux": "^8.0.2",
"react-to-print": "^2.14.7",
"redux": "^4.2.0",
"sass": "^1.54.5",
"swr": "^1.3.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.3.0",
"@testing-library/user-event": "^14.4.3",
"autoprefixer": "^10.4.8",
"babel-loader": "^8.2.5",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"postcss": "^8.4.16",
"serve": "^14.0.1",
"storybook-addon-next": "^1.6.7",
"tailwindcss": "^3.1.8",
"tailwindcss-animate": "^1.0.5"
}
}