-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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
{
"name": "contentful-lib-helpers",
"version": "0.4.0",
"type": "module",
"description": "Helpers for Contentful's Content Management API",
"homepage": "https://github.com/AtidaTech/contentful-lib-helpers",
"keywords": [
"contentful",
"management",
"helpers",
"contentful-management",
"contentful-helpers",
"contentful-lib-helpers"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "https://github.com/AtidaTech/contentful-lib-helpers.git"
},
"author": "Atida <hello@atida.com>",
"license": "MIT",
"scripts": {
"lint": "node_modules/eslint/bin/eslint.js --resolve-plugins-relative-to ./ --ext js,mjs,cjs,jsx,ts,tsx ./lib",
"lint-fix": "node_modules/eslint/bin/eslint.js --resolve-plugins-relative-to ./ --ext js,mjs,cjs,jsx,ts,tsx ./lib --fix"
},
"main":"index.js",
"dependencies": {
"contentful-management": ">11.31.7",
"follow-redirects": ">=1.15.6",
"natural-orderby": "^2.0.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.0.0",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.0",
"typescript": "^4.4.3",
"word-wrap": "^1.2.5"
}
}