forked from contentful/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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": "@contentful/dam-app-base",
"description": "Library to build an app to integrate your Digital Asset Management (DAM) system of choice with Contentful",
"version": "3.0.14",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Contentful GmbH",
"license": "MIT",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/contentful/apps.git",
"directory": "packages/dam-app-base"
},
"devDependencies": {
"@testing-library/react": "15.0.7",
"@types/jest": "27.5.0",
"@types/react": "18.2.0",
"@types/react-dom": "18.2.0",
"jest": "27.5.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "3.0.2",
"ts-jest": "27.1.5",
"typedoc": "0.26.6",
"typedoc-plugin-markdown": "3.17.1",
"typescript": "4.7.4"
},
"dependencies": {
"@contentful/app-sdk": "^4.23.0",
"@contentful/f36-components": "^4.0.42",
"@contentful/f36-tokens": "^4.0.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"contentful-management": "^10.0.0",
"emotion": "^10.0.0"
},
"peerDependencies": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"scripts": {
"build": "rimraf lib && tsc",
"build:docs": "rimraf docs && typedoc",
"prepublishOnly": "npm run build && npm run build:docs",
"test": "jest --watch",
"test:ci": "jest"
}
}