forked from contentful/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.59 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
{
"name": "@contentful/ecommerce-app-base",
"description": "Library to quickly build an app to integrate your e-commerce system of choice with Contentful",
"version": "3.1.16",
"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/ecommerce-app-base"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "12.1.5",
"@types/array-move": "2.0.0",
"@types/jest": "27.5.0",
"@types/lodash": "4.14.182",
"@types/node": "18.0.0",
"@types/react": "17.0.43",
"@types/react-dom": "18.0.3",
"@types/react-sortable-hoc": "0.7.1",
"jest": "27.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"ts-jest": "27.1.4",
"typedoc": "0.23.10",
"typedoc-plugin-markdown": "3.13.4",
"typescript": "4.7.4"
},
"dependencies": {
"@contentful/app-sdk": "^4.0.0",
"@contentful/f36-components": "^4.0.42",
"@contentful/f36-tokens": "^4.0.0",
"array-move": "^3.0.0",
"contentful-management": "^10.0.0",
"emotion": "^10.0.0",
"lodash": "^4.0.0",
"react-sortable-hoc": "^2.0.0"
},
"peerDependencies": {
"react": "^16.3.0 || ^17.0.0",
"react-dom": "^16.3.0 || ^17.0.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"
}
}