-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "@mageworx/seo-veniapwa",
"author": "MageWorx",
"version": "1.0.0",
"main": "src/index.js",
"pwa-studio": {
"targets": {
"intercept": "src/intercept.js"
}
},
"scripts": {
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"lint": "eslint --ignore-path .gitignore 'src/**/{*.js,package.json}'",
"prepare": "install-peers"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"yarn lint --fix",
"yarn format"
]
},
"peerDependencies": {
"@apollo/client": "~3.1.2",
"@magento/peregrine": "~7.0.0",
"@magento/pwa-buildpack": ">=6.0.0",
"@magento/venia-ui": "~4.0.0",
"react": "~16.9.0",
"react-dom": "^16.12.0",
"graphql-tag": "~2.10.1",
"webpack": "~4.38.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-syntax-class-properties": "^7.12.1",
"babel-eslint": "~10.0.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-package-json": "^0.1.4",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-react-hooks": "^1.6.0",
"identity-obj-proxy": "^3.0.0",
"install-peers-cli": "^2.2.0",
"lint-staged": "^10.0.8",
"prettier": "^1.9.2",
"prettier-check": "^2.0.0"
}
}