-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (72 loc) · 2.05 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
{
"name": "datocms-plugin-saleor",
"version": "1.0.9",
"description": "Quickly find Saleor products and variants and link them to DatoCMS",
"author": "Davide Marchet <[email protected]>",
"homepage": "https://github.com/DidoMarchet/datocms-plugin-saleor",
"main": "index.js",
"scripts": {
"start": "cross-env BROWSER='none' PUBLIC_URL='/' react-scripts start",
"build": "cross-env PUBLIC_URL='.' react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "npx eslint . --fix --ext .ts,.tsx",
"format": "prettier --write 'src/**/*.{tsx,ts}' --config ./.prettierrc",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@types/node": "^16.11.43",
"@types/react": "^17.0.47",
"@types/react-dom": "^17.0.17",
"classnames": "^2.3.1",
"datocms-plugin-sdk": "^0.5.2",
"datocms-react-ui": "^0.5.2",
"final-form": "^4.20.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-final-form": "^6.5.9",
"react-scripts": "5.0.1",
"typescript": "^4.7.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.7.1"
},
"eslintConfig": {
"extends": [
"react-app"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"keywords": [
"datocms-plugin"
],
"datoCmsPlugin": {
"title": "Saleor",
"previewImage": "",
"coverImage": "docs/cover.png",
"entryPoint": "build/index.html",
"permissions": []
}
}