-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.8 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
68
69
70
71
72
73
{
"name": "shared-file-resolver",
"version": "0.1.0",
"private": true,
"description": "Service to normalize file sharing links from popular service like Dropbox, Box and Google Drive",
"license": "UNLICENSED",
"author": "André Nanninga <andre.nanninga@strv.com>",
"main": "index.js",
"scripts": {
"deploy": "now deploy",
"dev": "now dev",
"lint": "eslint ./src/**/*.*",
"qa": "run-p type-check test lint",
"test": "echo \"not yet implemented\"",
"type-check": "tsc"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn qa"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write",
"git add"
],
"package.json": [
"yarn sort-package-json",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"dependencies": {
"change-case": "^3.1.0",
"dotenv": "^8.0.0",
"googleapis": "^40.0.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.15",
"mime-types": "^2.1.24"
},
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@now/node": "^0.10.0",
"@strv/eslint-config-node": "^2.0.0",
"@strv/eslint-config-typescript": "^2.0.0",
"@types/dotenv": "^6.1.1",
"@types/isomorphic-fetch": "^0.0.35",
"@types/lodash": "^4.14.136",
"@types/node": "^12.0.10",
"@typescript-eslint/parser": "^1.11.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"husky": "^2.5.0",
"lint-staged": "^8.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"sort-package-json": "^1.22.1",
"ts-node": "^8.3.0",
"typescript": "^3.5.2"
}
}