-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.14 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
{
"name": "cobot-zapier",
"version": "2.4.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"validate": "yarn build && yarn zapier validate",
"build": "yarn clean && tsc",
"push": "jest && yarn build && yarn zapier push",
"clean": "rimraf ./lib ./build",
"watch": "yarn clean && tsc --watch",
"prepare": "husky install",
"format": "prettier --write .",
"lint": "prettier --check ."
},
"lint-staged": {
"**/*": "yarn prettier --write --ignore-unknown"
},
"dependencies": {
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"zapier-platform-core": "16.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.13",
"@types/luxon": "^3.4.2",
"@types/node": "^22",
"@types/node-fetch": "^2.6.12",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.11",
"nock": "^13.5.6",
"prettier": "3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "5",
"zapier-platform-cli": "^15.11.1"
},
"resolutions": {
"@types/babel__traverse": "7.20.2"
},
"private": true
}