-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.25 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
75
76
77
78
79
{
"name": "nextglabs.com",
"version": "1.1.0",
"scripts": {
"dev": "next",
"build": "next build",
"analyze": "ANALYZE_BUNDLE=true next build",
"start": "next start",
"lint:style": "next lint --dir src",
"lint:fix": "yarn lint:style --fix",
"lint:types": "tsc --noEmit",
"lint:all": "npm-run-all -p lint:style lint:types",
"test": "jest",
"prepare": "husky install",
"postbuild": "next-sitemap",
"codegen": "DOTENV_CONFIG_PATH=./.env.local graphql-codegen --require dotenv/config --config codegen.ts"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@chakra-ui/react": "^2.8.0",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@next/bundle-analyzer": "^13.4.13",
"@next/font": "^13.4.13",
"@vercel/analytics": "^1.0.1",
"framer-motion": "^10.15.0",
"graphql": "^16.7.1",
"graphql-tag": "^2.12.6",
"i18next": "^23.4.2",
"intersection-observer": "^0.12.2",
"next": "^13.4.13",
"next-i18next": "^14.0.0",
"next-mdx-remote": "^4.4.1",
"next-seo": "^6.1.0",
"next-sitemap": "^4.1.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-fast-marquee": "^1.6.0",
"react-i18next": "^13.0.3",
"react-icons": "^4.10.1",
"react-intersection-observer": "^9.5.2",
"react-is": "^18.2.0",
"react-scroll": "^1.8.9",
"sharp": "^0.32.4",
"styled-components": "^6.0.7",
"use-sound": "^4.0.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"eslint": "^8.46.0",
"eslint-config-next": "^13.4.13",
"eslint-plugin-jest-dom": "^5.0.2",
"eslint-plugin-testing-library": "^5.11.1",
"husky": "^8.0.1",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"lint-staged": "^13.2.3",
"next-router-mock": "^0.9.7",
"node-mocks-http": "^1.12.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"yarn lint:fix",
"git add"
]
},
"license": "MIT"
}