-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
104 lines (104 loc) · 3.22 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
{
"name": "artwithaliens",
"version": "1.0.0",
"description": "A WordPress decoupled application in React built with Next.js",
"scripts": {
"analyze": "ANALYZE_BUNDLE=true yarn build",
"build": "next build",
"dev": "concurrently \"next dev\" \"yarn generate --watch\"",
"format": "prettier --write \"{src,types}/**/*.{ts,tsx}\" *.{js,json,md,ts}",
"generate": "graphql-codegen",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"start": "next start",
"storybook": "start-storybook -s ./public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artwithaliens/storefront.git"
},
"keywords": [
"decoupled",
"react",
"next.js",
"graphql"
],
"author": "Eike Foken <eikefoken@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/artwithaliens/storefront/issues"
},
"homepage": "https://artwithaliens.com",
"dependencies": {
"@apollo/client": "^3.3.16",
"@emotion/react": "^11.4.0",
"@hookform/resolvers": "^2.4.0",
"@material-ui/core": "^5.0.0-alpha.33",
"@material-ui/lab": "^5.0.0-alpha.33",
"@material-ui/styles": "^5.0.0-alpha.33",
"@next/bundle-analyzer": "^10.2.0",
"@next/plugin-sentry": "^10.1.3",
"braintree-web": "^3.76.3",
"clsx": "^1.1.1",
"graphql": "^15.5.0",
"graphql-tag": "^2.12.4",
"html-react-parser": "^1.2.6",
"idb-keyval": "^5.0.5",
"js-base64": "^3.6.0",
"lodash": "^4.17.21",
"next": "^10.2.0",
"next-offline": "^5.0.5",
"next-seo": "^4.24.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-cookie-consent": "^6.2.3",
"react-dom": "^17.0.2",
"react-ga": "^3.3.0",
"react-hook-form": "^7.5.0",
"react-is": "^17.0.2",
"react-number-format": "^4.5.5",
"react-swipeable-views": "^0.13.9",
"react-use": "^17.2.4",
"style-to-object": "^0.3.0",
"type-fest": "^1.1.1",
"yup": "^0.32.9"
},
"devDependencies": {
"@apollo/react-testing": "^4.0.0",
"@babel/core": "^7.14.0",
"@graphql-codegen/cli": "^1.21.4",
"@graphql-codegen/fragment-matcher": "^2.0.1",
"@graphql-codegen/typescript-operations": "^1.17.16",
"@graphql-codegen/typescript-react-apollo": "^2.2.4",
"@next/eslint-plugin-next": "^10.2.0",
"@storybook/addon-a11y": "^6.2.9",
"@storybook/addon-actions": "^6.2.9",
"@storybook/addon-essentials": "^6.2.9",
"@storybook/addons": "^6.2.9",
"@storybook/builder-webpack5": "^6.2.9",
"@storybook/react": "^6.2.9",
"@storybook/theming": "^6.2.9",
"@types/braintree-web": "^3.75.2",
"@types/lodash": "^4.14.168",
"@types/react": "^17.0.5",
"@types/react-dom": "^17.0.3",
"@types/react-swipeable-views": "^0.13.0",
"@types/workbox-sw": "^4.3.1",
"babel-loader": "^8.2.2",
"babel-plugin-inline-react-svg": "^2.0.1",
"concurrently": "^6.1.0",
"eslint": "^7.26.0",
"eslint-config-artwithaliens": "^1.12.0",
"prettier": "^2.3.0",
"shipit-cli": "^5.3.0",
"shipit-deploy": "^5.3.0",
"shipit-shared": "^4.4.2",
"storybook-addon-next-router": "^2.0.4",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.2.4",
"webpack": "^5.36.2"
},
"resolutions": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}