-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.04 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development next dev",
"build": "graphql-codegen && cross-env NODE_ENV=production next build",
"start": "cross-env NODE_ENV=production next start",
"codegen": "graphql-codegen",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@graphql-codegen/cli": "^4.0.1",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@headlessui/react": "^1.5.0",
"@heroicons/react": "v1",
"@hookform/resolvers": "^3.1.0",
"@sentry/nextjs": "^7.54.0",
"@tsparticles/engine": "^3.3.0",
"@tsparticles/react": "^3.0.0",
"@vercel/analytics": "^1.0.1",
"axios": "^1.4.0",
"class-variance-authority": "^0.6.0",
"cross-env": "^7.0.3",
"date-fns": "^3.6.0",
"graphql": "^16.6.0",
"graphql-request": "^6.1.0",
"graphql-tag": "^2.12.6",
"jest": "^27.5.1",
"next": "^13.4.5",
"next-themes": "^0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.44.3",
"react-icons": "^4.3.1",
"react-particles": "^2.12.2",
"react-popper-tooltip": "^4.3.1",
"react-tooltip": "^4.2.21",
"react-typing-hook": "^1.0.10",
"shufflejs": "^6.0.0",
"tailwind-merge": "^1.13.1",
"ts-jest": "^29.1.0",
"tsparticles": "^3.3.0",
"yup": "^1.2.0"
},
"devDependencies": {
"@babel/preset-react": "^7.22.3",
"@babel/preset-typescript": "^7.21.5",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@next/bundle-analyzer": "^12.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jest": "^27.4.1",
"@types/node": "17.0.21",
"@types/react": "17.0.39",
"autoprefixer": "^10.4.2",
"babel-jest": "^29.5.0",
"commitlint-config-gitmoji": "^2.3.1",
"eslint": "8.10.0",
"eslint-config-next": "^13.4.5",
"husky": "^7.0.4",
"postcss": "^8.4.7",
"prettier": "^2.8.8",
"tailwindcss": "^3.0.23",
"tailwindcss-tooltip-arrow-after": "^1.0.0",
"typescript": "4.6.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}