-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.63 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.63 KB
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
84
85
86
87
88
{
"name": "csr-uploading-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@contentful/app-sdk": "^4.56.0",
"@contentful/f36-components": "4.80.2",
"@contentful/f36-icons": "^4.29.0",
"@contentful/f36-tokens": "5.1.0",
"@contentful/f36-workbench": "^4.21.1",
"@contentful/field-editor-slug": "^3.2.6",
"@contentful/react-apps-toolkit": "1.2.22",
"@reduxjs/toolkit": "^2.11.2",
"contentful-management": "11.74.0",
"contentful-rich-text-html-parser": "^1.8.11",
"marked": "^17.0.5",
"papaparse": "^5.5.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "^9.2.0"
},
"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": "2.5.11",
"@eslint/compat": "^2.0.5",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.2",
"@playwright/test": "^1.59.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.10.1",
"@vitejs/plugin-react": "^5.1.4",
"cross-env": "10.1.0",
"dateformat": "^5.0.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"happy-dom": "^20.7.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"npm-audit-resolver": "^3.0.0-RC.0",
"playwright": "^1.56.1",
"prettier": "^3.8.3",
"vite": "^7.3.2",
"vitest": "^4.1.2"
},
"overrides": {
"@contentful/app-scripts": {
"contentful-management": "$contentful-management"
},
"tmp": "^0.2.4",
"tar": "^7.5.10",
"lodash": "^4.18.1"
},
"homepage": "."
}