generated from vtex-sites/base.store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.82 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
{
"name": "base.store",
"private": true,
"version": "0.221.0",
"dependencies": {
"@reach/accordion": "^0.16.1",
"@vtex/gatsby-plugin-graphql": "0.373.20",
"@vtex/gatsby-plugin-nginx": "0.373.20",
"@vtex/gatsby-plugin-thumbor": "0.373.20",
"@vtex/gatsby-source-vtex": "0.373.20",
"@vtex/store-sdk": "https://pkg.csb.dev/vtex/faststore/commit/b24a1e9b/@vtex/store-sdk",
"@vtex/store-ui": "^0.373.20",
"babel-preset-gatsby": "^1.11.0",
"clsx": "^1.1.1",
"gatsby": "^3.11.1",
"gatsby-plugin-image": "^1.12.0",
"gatsby-plugin-manifest": "^3.11.0",
"gatsby-plugin-next-seo": "^1.7.0",
"gatsby-plugin-nprogress": "^3.11.0",
"gatsby-plugin-offline": "^4.11.0",
"gatsby-plugin-robots-txt": "^1.5.1",
"gatsby-plugin-root-import": "^2.0.6",
"query-string": "^7.0.1",
"react": "^18.0.0-alpha-bc4e75112-20210815",
"react-dom": "^18.0.0-alpha-bc4e75112-20210815",
"react-feather": "^2.0.9",
"react-helmet-async": "^1.0.9",
"swr": "^0.5.6"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.10",
"@testing-library/cypress": "^8.0.0",
"@types/cypress": "^1.1.3",
"@types/react-dom": "^17.0.9",
"@vtex/lighthouse-config": "0.373.20",
"@vtex/prettier-config": "0.3.6",
"@vtex/tsconfig": "0.5.6",
"autoprefixer": "^10.3.1",
"color": "^4.0.1",
"dotenv": "^8.2.0",
"eslint": "^7.22.0",
"eslint-config-vtex-react": "^7.0.0",
"gatsby-plugin-bundle-stats": "^3.1.3",
"gatsby-plugin-postcss": "^4.12.0",
"husky": "^5.2.0",
"is-ci": "^3.0.0",
"lint-staged": "^10.5.4",
"postcss": "^8.3.6",
"prettier": "^2.2.0",
"start-server-and-test": "^1.13.1",
"tailwindcss": "^2.2.7",
"typescript": "^4.3.5",
"webpack-merge": "^5.7.3"
},
"resolutions": {
"@typescript-eslint/parser": "^4",
"@typescript-eslint/eslint-plugin": "^4"
},
"license": "MIT",
"scripts": {
"build": "gatsby build --log-pages",
"develop": "gatsby develop",
"clean": "gatsby clean",
"serve": "sed -i -e 's/\\$PORT/80/' public/nginx.conf && docker run --rm --name local_nginx -v \"$PWD/public/nginx.conf:/etc/nginx/nginx.conf\" -v \"$PWD/public:/etc/nginx/html\" -p 80:80 -it fholzer/nginx-brotli@sha256:ebaf3265a9e21dcd4ddfe44b22d6c4d8fdec563c9a0afd69097f286fd8a0eb00",
"test": "start-server-and-test serve http://localhost cy:run",
"lhci": "start-server-and-test serve http://localhost lhci:run",
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,json}\"",
"lint": "eslint --ext js,ts,jsx,tsx .",
"postinstall": "is-ci || husky install",
"lhci:run": "lhci autorun",
"cy:run": "cypress open"
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
},
"engines": {
"node": ">=14"
}
}