-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.7 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "leah-gardner-storefront",
"description": "A Gatsby storefront for a shopify store",
"version": "1.0.0",
"private": true,
"author": "Yinka Adedire",
"license": "MIT",
"keywords": [
"gatsby",
"typescript",
"shopify",
"e-commerce"
],
"scripts": {
"dev": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"lint:fix": "eslint --fix --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install",
"test": "jest",
"commit": "cz"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --ignore-path .gitignore --fix",
"prettier --ignore-path .gitignore --write"
]
},
"dependencies": {
"@headlessui/react": "1.7.2",
"@stitches/react": "1.2.8",
"@studio-freight/lenis": "0.2.6",
"add": "2.0.6",
"base64-string": "1.1.2",
"clsx": "1.2.1",
"gatsby": "4.23.0",
"gatsby-plugin-image": "2.23.0",
"gatsby-plugin-manifest": "4.23.0",
"gatsby-plugin-react-helmet": "5.23.0",
"gatsby-plugin-react-svg": "3.1.0",
"gatsby-plugin-sharp": "4.23.0",
"gatsby-plugin-transition-link": "1.20.5",
"gatsby-plugin-typegen": "3.0.0",
"gatsby-source-filesystem": "4.23.0",
"gatsby-source-shopify": "7.12.0",
"gatsby-transformer-sharp": "4.23.0",
"gsap": "3.11.1",
"hamburger-react": "2.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-fast-marquee": "1.3.5",
"react-feather": "2.0.10",
"react-flip-move": "3.0.4",
"react-flip-toolkit": "7.0.16",
"react-helmet": "6.1.0",
"react-hot-toast": "2.4.0",
"react-use": "17.4.0",
"shopify-buy": "2.16.1",
"tsconfig-paths-webpack-plugin": "4.0.0",
"yarn": "1.22.19"
},
"devDependencies": {
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@testing-library/dom": "8.18.1",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/react-hooks": "8.0.1",
"@types/isomorphic-fetch": "0.0.36",
"@types/jest": "29.0.3",
"@types/node": "18.7.18",
"@types/react": "18.0.20",
"@types/react-dom": "18.0.6",
"@types/react-helmet": "6.1.5",
"@types/react-transition-group": "4.4.5",
"@types/shopify-buy": "2.10.10",
"@typescript-eslint/eslint-plugin": "5.38.0",
"@typescript-eslint/parser": "5.38.0",
"autoprefixer": "10.4.12",
"babel-jest": "29.0.3",
"babel-preset-gatsby": "2.23.0",
"commitizen": "4.2.5",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.0.2",
"eslint": "8.23.1",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "17.0.0",
"eslint-import-resolver-typescript": "3.5.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.0.4",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-n": "15.2.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-react": "7.31.8",
"eslint-plugin-react-hooks": "4.6.0",
"gatsby-plugin-postcss": "5.23.0",
"husky": "8.0.1",
"identity-obj-proxy": "3.0.0",
"jest": "29.0.3",
"jest-environment-jsdom": "29.0.3",
"lint-staged": "13.0.3",
"postcss": "8.4.16",
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.13",
"tailwindcss": "3.1.8",
"ts-jest": "29.0.1",
"typescript": "4.8.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}