-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.66 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
{
"name": "azure-blob-copy-google-cloud",
"version": "1.0.0",
"description": "",
"private": true,
"scripts": {
"format": "prettier --write .",
"format:diff": "prettier --list-different .",
"lint:bicep": "./script/pre_commit_bicep.sh \"*.bicep\"",
"lint:spell": "cspell -- --config .cspell.json \"**/*.{js,json,md,sh,bicep}\"",
"lint:eslint": "eslint --config .eslintrc.js --cache .",
"lint": "eslint --config .eslintrc.js && npm run lint:spell && npm run lint:bicep",
"lint:fix": "npm run lint -- --fix",
"clean": "rimraf \"node_modules\"",
"clean:install": "rimraf \"node_modules\" && npm install",
"start": "npm run start -ws"
},
"workspaces": [
"functions"
],
"keywords": [],
"author": "",
"license": "MIT",
"engines": {
"node": "18.17.0",
"npm": ">=9"
},
"devDependencies": {
"cspell": "^6.31.2",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"git-commit-msg-linter": "^4.2.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"rimraf": "^4.3.1"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"printWidth": 120,
"bracketSpacing": true,
"arrowParens": "avoid"
},
"lint-staged": {
"*.js": [
"eslint --config .eslintrc.js --fix"
],
"*.bicep": [
"./scripts/pre_commit_bicep.sh "
],
"*": [
"prettier --ignore-unknown --write",
"npm run lint:spell --no-progress --no-summary"
]
},
"dependencies": {
"@azure/functions": "^4.0.0-alpha.11",
"@google-cloud/storage": "^7.0.1",
"npm": "^9.8.1"
}
}