-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "template-ecommerce-webapp-nextjs",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18",
"npm": "Please use Yarn"
},
"scripts": {
"generate-theme-typings": "yarn chakra-cli tokens ./src/theme/theme.ts",
"predev": "yarn generate-theme-typings",
"prebuild": "yarn generate-theme-typings",
"prepare": "husky install",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit",
"graphql-codegen:generate": "graphql-codegen -r dotenv/config --config codegen.ts",
"graphql-codegen:watch": "graphql-codegen --watch -r dotenv/config --config codegen.ts",
"setup": "./bin/setup.sh"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --quiet --fix"
],
"src/**/*.{json,js,ts,jsx,tsx}": [
"prettier --write"
]
},
"license": "MIT",
"dependencies": {
"@chakra-ui/react": "^2.4.1",
"@contentful/f36-icons": "^4.23.2",
"@contentful/f36-tokens": "^4.0.1",
"@contentful/live-preview": "^2.2.1",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@next/bundle-analyzer": "^13.0.4",
"@next/font": "13.0.5",
"@svgr/webpack": "^6.5.1",
"dotenv": "^16.0.3",
"framer-motion": "^7.6.11",
"graphql": "^16.6.0",
"locale-currency": "^0.0.2",
"next": "13.0.5",
"next-absolute-url": "^1.2.2",
"next-compose-plugins": "^2.2.1",
"next-i18next": "^12.1.0",
"next-pwa": "^5.6.0",
"next-seo": "^5.14.1",
"next-sitemap": "^3.1.32",
"react": "18.2.0",
"react-dom": "18.2.0",
"urijs": "^1.19.11"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@chakra-ui/cli": "^2.1.8",
"@graphql-codegen/cli": "2.13.12",
"@graphql-codegen/client-preset": "1.1.4",
"@graphql-codegen/introspection": "2.2.1",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "8.26.0",
"eslint-config-next": "13.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^8.0.2",
"i18next": "^21.9.2",
"i18next-http-backend": "^1.4.4",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "4.9.3",
"typescript-graphql-request": "^4.4.6"
}
}