forked from SoftwareBrothers/adminjs-upload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.73 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
{
"name": "@admin-bro/upload",
"version": "1.1.0",
"main": "index.js",
"types": "types/index.d.ts",
"private": false,
"repository": "git@github.com:SoftwareBrothers/admin-bro-upload.git",
"license": "MIT",
"scripts": {
"release": "semantic-release",
"build": "yarn tsc",
"clean": "rm -fr build && mkdir build && rm -fr types && mkdir types",
"dev": "yarn clean && tsc --watch",
"test": "mocha -r ts-node/register ./src/**/*.spec.ts",
"lint": "eslint './src/**/*' './example-app/**/*'",
"check:all": "yarn lint && yarn build && yarn test"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"admin-bro": ">=3.2.5"
},
"optionalDependencies": {
"aws-sdk": "^2.728.0",
"@google-cloud/storage": "^5.3.0"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@google-cloud/storage": "^5.3.0",
"@semantic-release/git": "^9.0.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/sinon": "^9.0.5",
"@types/sinon-chai": "^3.2.4",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"admin-bro": ">=3.2.5",
"aws-sdk": "^2.728.0",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"husky": "^4.2.5",
"mocha": "^8.1.3",
"semantic-release": "^17.0.7",
"semantic-release-slack-bot": "^1.6.2",
"sinon": "^9.0.3",
"sinon-chai": "^3.5.0",
"ts-node": "^9.0.0",
"typescript": "^3.9.7"
}
}