-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.31 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
{
"name": "contentfully",
"version": "3.0.4",
"description": "A simple but performant REST client for Contentful.",
"keywords": [
"contentful",
"javascript",
"react-native"
],
"author": "Simeon de Dios <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nascentdigital/contentfully.git"
},
"bugs": {
"url": "https://github.com/nascentdigital/contentfully/issues"
},
"homepage": "https://github.com/nascentdigital/contentfully#readme",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest",
"dev": "tsc -w"
},
"dependencies": {
"contentful": "^10.12.3",
"contentful-management": "^11.27.3",
"lodash": "^4.17.21",
"@types/json-patch": "^0.0.33"
},
"devDependencies": {
"@contentful/rich-text-types": "^16.5.2",
"@jest/test-sequencer": "^29.7.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"type-fest": "^4.20.1",
"typescript": "^5.5.2"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie > 0"
]
}