forked from SoftwareBrothers/adminjs-import-export
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.84 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
{
"name": "@adminjs/import-export",
"version": "2.0.2",
"main": "lib/index.js",
"types": "types/index.d.ts",
"private": false,
"repository": "git@github.com:MenahemOwlytics/adminjs-import-export.git",
"license": "SEE LICENSE IN LICENSE",
"scripts": {
"release": "semantic-release",
"build": "tsc",
"dev": "tsc --watch",
"test": "jest",
"lint": "eslint './src/**/*'",
"check:all": "yarn lint && yarn build && yarn test"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"@adminjs/design-system": "^3.1.0",
"adminjs": "^6.0.0"
},
"devDependencies": {
"@adminjs/design-system": "^3.1.5",
"@adminjs/express": "^5.0.1",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/git": "^9.0.0",
"@types/express": "^4.17.9",
"@types/jest": "^26.0.15",
"@types/json2csv": "^5.0.1",
"@types/xml": "^1.0.5",
"@types/xml2js": "^0.4.5",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"adminjs": "^6.7.2",
"date-fns": "^2.16.1",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"express": "^4.17.1",
"express-formidable": "^1.2.0",
"express-session": "^1.17.2",
"husky": "^4.3.8",
"jest": "^26.6.1",
"prettier": "^2.7.1",
"semantic-release": "^17.2.2",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"dependencies": {
"@adminjs/mongoose": "^3.0.1",
"@types/mongoose": "^5.7.37",
"csvtojson": "^2.0.10",
"file-saver": "^2.0.2",
"json2csv": "^5.0.3",
"mongoose": "^5.10.11",
"xml": "^1.0.1",
"xml2js": "^0.4.23"
}
}