-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.44 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.44 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
{
"name": "@adminjs/import-export",
"version": "3.0.0",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./types/index.d.ts"
}
},
"private": false,
"repository": "git@github.com:SoftwareBrothers/adminjs-import-export.git",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"release": "semantic-release",
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint './src/**/*'"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"adminjs": "^7.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/git": "^10.0.1",
"@types/json2csv": "^5.0.3",
"@types/xml": "^1.0.8",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"adminjs": "^7.0.0",
"date-fns": "^2.29.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^4.3.0",
"prettier": "^2.8.6",
"semantic-release": "^20.1.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"csvtojson": "^2.0.10",
"file-saver": "^2.0.5",
"json2csv": "^6.0.0-alpha.2",
"xml": "^1.0.1",
"xml2js": "^0.4.23"
}
}