-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 2.48 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
{
"name": "csr-uploading-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@contentful/app-sdk": "^4.29.3",
"@contentful/f36-components": "4.74.1",
"@contentful/f36-icons": "^4.29.0",
"@contentful/f36-tokens": "4.1.0",
"@contentful/f36-workbench": "^4.21.1",
"@contentful/field-editor-slug": "^1.5.12",
"@contentful/react-apps-toolkit": "1.2.16",
"@reduxjs/toolkit": "^2.3.0",
"contentful-management": "11.37.0",
"contentful-rich-text-html-parser": "^1.5.15",
"marked": "^15.0.1",
"papaparse": "^5.4.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "^9.1.2"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"lint": "prettier --check . && npm run lint:js",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "prettier -w . && npm run lint:js -- --fix",
"test": "npx vitest run",
"e2e-install-browsers": "playwright install",
"e2e-tests": "playwright test",
"create-app-definition": "contentful-app-scripts create-app-definition",
"upload": "contentful-app-scripts upload --bundle-dir ./dist",
"upload-ci": "contentful-app-scripts upload --ci --bundle-dir ./dist --organization-id $CONTENTFUL_ORG_ID --definition-id $CONTENTFUL_APP_DEF_ID --token $CONTENTFUL_ACCESS_TOKEN",
"prepare": "husky"
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"*.{js,jsx}": "npm run lint:js -- --fix",
"*": "prettier --ignore-unknown --write"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@contentful/app-scripts": "1.30.1",
"@playwright/test": "^1.48.2",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.9.0",
"@vitejs/plugin-react": "4.3.3",
"cross-env": "7.0.3",
"dateformat": "^5.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"happy-dom": "^15.11.3",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-audit-resolver": "^3.0.0-RC.0",
"playwright": "^1.47.2",
"prettier": "^3.3.3",
"vite": "5.4.11",
"vitest": "^2.1.4"
},
"overrides": {
"@contentful/app-scripts": {
"contentful-management": "$contentful-management"
}
},
"homepage": "."
}