-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.49 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
{
"name": "beauty.store",
"private": true,
"version": "0.249.0",
"license": "MIT",
"browserslist": "supports es6-module and not dead",
"scripts": {
"generate": "graphql-codegen",
"build": "yarn partytown && gulp buildStyles && gatsby build",
"develop": "yarn partytown && gatsby develop",
"clean": "gatsby clean",
"serve": "gatsby serve",
"test": "cypress open",
"lhci": "lhci autorun",
"format": "prettier --write \"**/*.{ts,js,tsx,jsx,json}\"",
"lint": "eslint --ext js,ts,jsx,tsx .",
"stylelint": "stylelint \"**/*.scss\"",
"stylelint:fix": "stylelint \"**/*.scss\" --fix",
"postinstall": "is-ci || husky install",
"partytown": "partytown copylib ./public/~partytown"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@builder.io/partytown": "^0.5.1",
"@envelop/core": "^1.2.0",
"@envelop/graphql-jit": "^1.1.1",
"@envelop/parser-cache": "^2.2.0",
"@envelop/validation-cache": "^2.2.0",
"@faststore/api": "^1.6.26",
"@faststore/sdk": "^1.6.26",
"@faststore/ui": "^1.6.26",
"@vtex/gatsby-plugin-nginx": "^1.6.26",
"@vtex/gatsby-source-cms": "^0.2.5",
"@vtex/gatsby-source-store": "^1.6.26",
"@vtex/graphql-utils": "^1.6.26",
"gatsby": "^3.14.3",
"gatsby-plugin-gatsby-cloud": "^3.2.0",
"gatsby-plugin-manifest": "^3.14.0",
"gatsby-plugin-netlify": "^3.14.0",
"gatsby-plugin-next-seo": "^1.8.0",
"gatsby-plugin-nprogress": "^3.14.0",
"gatsby-plugin-react-helmet": "^5.12.1",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-robots-txt": "^1.6.13",
"gatsby-plugin-root-import": "^2.0.7",
"gatsby-plugin-sass": "^5.3.0",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.26",
"gulp": "^4.0.2",
"gulp-sass": "^5.1.0",
"include-media": "^1.4.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-helmet-async": "^1.2.2",
"react-intersection-observer": "^8.32.5",
"react-markdown": "^8.0.2",
"sass": "^1.50.0",
"swiper": "^8.0.7",
"swr": "^1.1.0"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.10",
"@graphql-codegen/cli": "^2.2.1",
"@graphql-codegen/typescript": "^2.2.4",
"@graphql-codegen/typescript-operations": "^2.1.8",
"@lhci/cli": "^0.9.0",
"@testing-library/cypress": "^8.0.0",
"@types/cypress": "^1.1.3",
"@vtex/lighthouse-config": "^1.6.26",
"@vtex/prettier-config": "1.0.0",
"@vtex/tsconfig": "0.6.0",
"autoprefixer": "^10.4.0",
"axe-core": "^4.3.3",
"cypress": "6.6.0",
"cypress-axe": "^0.13.0",
"cypress-wait-until": "^1.7.2",
"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": "^5.3.0",
"husky": "^5.2.0",
"is-ci": "^3.0.0",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.4",
"prettier": "^2.2.0",
"stylelint": "^14.6.0",
"stylelint-config-recess-order": "^3.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.0.1",
"typescript": "^4.5.2"
},
"resolutions": {
"@typescript-eslint/parser": "^4",
"@typescript-eslint/eslint-plugin": "^4"
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
],
"*.scss": [
"stylelint --fix"
]
}
}