generated from vtex-sites/nextjs.store
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
113 lines (113 loc) · 3.45 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
{
"name": "@faststore/core",
"version": "0.15.0",
"license": "MIT",
"browserslist": "supports es6-module and not dead",
"scripts": {
"generate": "graphql-codegen",
"build": "yarn partytown && next build",
"develop": "yarn partytown && next dev",
"clean": "rm -r .next",
"serve": "next start",
"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": "node postinstall.js && (is-ci || husky install) || echo Skipped postinstall step for @faststore/core",
"partytown": "partytown copylib ./public/~partytown",
"storybook": "start-storybook --docs -p 6006",
"build-storybook": "build-storybook",
"release": "release-it --ci"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@builder.io/partytown": "^0.6.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.12.38",
"@faststore/graphql-utils": "^1.11.8",
"@faststore/sdk": "^1.11.8",
"@faststore/ui": "^1.12.23",
"@types/react": "^18.0.14",
"@vtex/client-cms": "^0.2.12",
"@vtex/tsconfig": "0.6.0",
"autoprefixer": "^10.4.0",
"css-loader": "^6.7.1",
"eslint": "^7.22.0",
"eslint-config-next": "12.1.5",
"eslint-config-vtex-react": "^9.0.0",
"graphql": "^15.0.0",
"include-media": "^1.4.10",
"msw": "^0.43.1",
"next": "^12.3.1",
"next-seo": "^5.4.0",
"nextjs-progressbar": "^0.0.14",
"postcss": "^8.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^8.32.5",
"sass": "^1.44.0",
"sass-loader": "^12.6.0",
"style-loader": "^3.3.1",
"swr": "^1.3.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "4.7.3"
},
"devDependencies": {
"@cypress/code-coverage": "^3.9.10",
"@faststore/lighthouse": "^1.11.8",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.5.1",
"@graphql-codegen/typescript-operations": "^2.4.2",
"@lhci/cli": "^0.9.0",
"@release-it/conventional-changelog": "^5.0.0",
"@storybook/addon-a11y": "^6.5.9",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@testing-library/cypress": "^8.0.0",
"@types/cypress": "^1.1.3",
"@vtex/prettier-config": "1.0.0",
"axe-core": "^4.3.3",
"cypress": "9.6.0",
"cypress-axe": "^0.13.0",
"cypress-wait-until": "^1.7.2",
"dotenv": "^8.2.0",
"husky": "^5.2.0",
"is-ci": "^3.0.0",
"lint-staged": "^10.5.4",
"msw-storybook-addon": "^1.6.3",
"prettier": "^2.2.0",
"release-it": "^15.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"
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.json": [
"prettier --write"
],
"*.scss": [
"stylelint --fix"
]
},
"msw": {
"workerDirectory": "public"
}
}