-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.18 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
{
"name": "@northflank/deploy-to-northflank",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"lint-staged": "lint-staged",
"build": "tsc && ncc build build/index.js -m --license licenses.md"
},
"dependencies": {
"@actions/core": "^1.9.1",
"@northflank/js-client": "^0.7.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"typescript": "^4.8.3"
},
"lint-staged": {
"**/*.{ts}": [
"eslint --fix",
"prettier --write --ignore-unknown"
],
"**/*.{json,yml}": [
"prettier --write --ignore-unknown"
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"root": true
},
"prettier": {
"singleQuote": true,
"printWidth": 100,
"trailingComma": "all"
}
}