forked from madaxen86/payload-plugin-import-export
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.86 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.86 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
{
"name": "payload-plugin-import-export",
"version": "0.0.7",
"homepage:": "https://github.com/madaxen86/payload-plugin-import.git",
"repository": "https://github.com/madaxen86/payload-plugin-import.git",
"description": "Payload CMS plugin to export and import data from csv and json files",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"payload",
"cms",
"plugin",
"typescript",
"react",
"import",
"export"
],
"scripts": {
"build": "tsc",
"test": "cd dev && yarn test",
"lint": "eslint src",
"lint:fix": "eslint --fix --ext .ts,.tsx src",
"clean": "rimraf dist && rimraf dev/yarn.lock",
"prepublishOnly": "yarn clean && yarn build",
"dev": "yalc-watch",
"preinstall": "tsc",
"postinstall": "tsc"
},
"yalcWatch": {
"watchFolder": "dist",
"buildWatchCommand": "tsc --watch",
"extensions": "js,png,svg,gif,jpeg,css"
},
"author": "madaxen86",
"license": "MIT",
"peerDependencies": {
"payload": "^2.11.2",
"react": "^18.0.0"
},
"devDependencies": {
"@payloadcms/eslint-config": "^0.0.1",
"@swc/jest": "^0.2.28",
"@types/jest": "^29.5.11",
"@types/papaparse": "^5.3.14",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"babel-loader": "^9.1.3",
"dotenv": "^8.2.0",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.7.0",
"payload": "^2.11.2",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"webpack": "^5.90.3",
"yalc-watch-improved": "^1.0.3"
},
"dependencies": {
"csvtojson": "^2.0.10",
"papaparse": "^5.4.1",
"react-jss": "^10.10.0"
},
"files": [
"dist"
]
}