forked from contentful/apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.62 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
74
75
76
77
78
79
80
81
82
83
{
"name": "@contentful/ecommerce-app-base",
"description": "Library to quickly build an app to integrate your e-commerce system of choice with Contentful",
"version": "3.6.9",
"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": {
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@storybook/addon-a11y": "^7.3.2",
"@storybook/addon-designs": "^7.0.5",
"@storybook/addon-essentials": "^7.2.3",
"@storybook/addon-interactions": "^7.2.3",
"@storybook/addon-links": "^7.2.3",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.2.3",
"@storybook/react": "^7.2.3",
"@storybook/react-webpack5": "^7.2.3",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "5.17.0",
"@testing-library/react": "12.1.5",
"@types/array-move": "2.0.0",
"@types/jest": "27.5.0",
"@types/lodash": "4.17.1",
"@types/node": "12.20.55",
"@types/react": "17.0.43",
"@types/react-dom": "18.0.3",
"@types/react-sortable-hoc": "0.7.1",
"@typescript-eslint/parser": "^6.4.0",
"eslint": "7.32.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"jest": "27.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "3.0.2",
"storybook": "^7.2.3",
"ts-jest": "27.1.5",
"typedoc": "0.25.13",
"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-icons": "^4.25.0",
"@contentful/f36-tokens": "^4.0.0",
"@contentful/react-apps-toolkit": "^1.2.16",
"@typescript-eslint/eslint-plugin": "^6.4.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": "CI=true jest --runInBand",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"lint": "eslint src"
}
}