generated from vtex-apps/service-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1014 Bytes
/
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
{
"name": "service-example",
"private": true,
"license": "UNLICENSED",
"scripts": {
"lint": "eslint --ext js,jsx,ts,tsx .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,graphql,gql}": [
"prettier --write"
]
},
"devDependencies": {
"@types/node": "^12.12.21",
"@vtex/prettier-config": "^0.3.6",
"eslint": "^7.16.0",
"eslint-config-vtex": "^12.9.3",
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^3.7.5",
"vtex.rewriter": "http://vtex.vtexassets.com/_v/public/typings/v1/[email protected]/public/@types/vtex.rewriter"
},
"dependencies": {
"@types/koa-bodyparser": "^4.3.10",
"@vtex/api": "^6.45.15",
"@vtex/clients": "^2.21.0",
"koa-bodyparser": "^4.4.1",
"twilio": "^4.11.1"
}
}