-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 KB
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
{
"name": "adserver-resolver",
"version": "0.0.1",
"description": "The resolver for VTEX's Ad Server GraphQL schema.",
"main": "node/index.ts",
"repository": "git@github.com:vtex-apps/adserver-resolver.git",
"author": "Henrique Caúla <henrique.caula@vtex.com.br>",
"license": "UNLICENSED",
"scripts": {
"lint": "eslint --ext js,jsx,ts,tsx .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\"",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"prettier --write",
"yarn lint --fix"
],
"*.{json,graphql,gql}": [
"prettier --write"
]
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.5.0",
"@vtex/prettier-config": "^1.0.0",
"eslint": "^8.47.0",
"eslint-config-vtex": "^15.0.2",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.0.2",
"typescript": "^5.1.6"
}
}