-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.62 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
{
"name": "storecomponents.store",
"private": true,
"version": "0.117.0",
"dependencies": {
"@vtex/gatsby-plugin-cms": "0.368.1",
"@vtex/gatsby-plugin-google-tag-manager": "0.370.0",
"@vtex/gatsby-plugin-graphql": "0.368.1",
"@vtex/gatsby-plugin-i18n": "0.368.1",
"@vtex/gatsby-plugin-nginx": "0.368.1",
"@vtex/gatsby-plugin-performance": "0.368.1",
"@vtex/gatsby-plugin-pixel-facebook": "0.368.1",
"@vtex/gatsby-plugin-theme-ui": "0.368.1",
"@vtex/gatsby-source-vtex": "0.368.1",
"@vtex/gatsby-theme-store": "0.368.1",
"@vtex/store-sdk": "0.368.1",
"@vtex/store-ui": "0.368.1",
"babel-preset-gatsby": "1.1.0",
"csvtojson": "2.0.10",
"dotenv": "8.6.0",
"gatsby": "3.1.2",
"gatsby-plugin-manifest": "3.1.0",
"gatsby-plugin-next-seo": "1.7.0",
"gatsby-plugin-offline": "4.4.0",
"gatsby-plugin-robots-txt": "1.5.5",
"react": "0.0.0-fec00a869",
"react-dom": "0.0.0-fec00a869",
"react-helmet-async": "1.0.9",
"webpack-merge": "5.7.3",
"yarn": "1.22.10"
},
"devDependencies": {
"@cypress/code-coverage": "3.9.6",
"@testing-library/cypress": "7.0.6",
"@vtex/lighthouse-config": "0.368.1",
"@vtex/prettier-config": "0.3.6",
"@vtex/tsconfig": "0.5.6",
"cypress": "7.4.0",
"eslint": "7.27.0",
"eslint-config-vtex-react": "7.0.0",
"husky": "5.2.0",
"is-ci": "3.0.0",
"lint-staged": "10.5.4",
"prettier": "2.3.0",
"start-server-and-test": "1.12.5",
"typescript": "4.2.3"
},
"resolutions": {
"@typescript-eslint/parser": "^4",
"@typescript-eslint/eslint-plugin": "^4"
},
"license": "MIT",
"scripts": {
"build": "gatsby build --log-pages",
"develop": "gatsby develop",
"start": "npm run develop",
"serve": "gatsby serve",
"docker: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",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test:e2e": "start-server-and-test develop http://localhost:8000 cy:open",
"cy:ci": "start-server-and-test develop http://localhost:8000 cy:run",
"clean": "gatsby clean",
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,json}\"",
"lint": "eslint --ext js,ts,jsx,tsx .",
"test:lhci": "lhci autorun",
"postinstall": "husky install"
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
]
}
}