-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 924 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
{
"name": "hubspot-cca-boilerplate",
"version": "1.0.0",
"description": "A boilerplate for creating complex CCA's (Custom Coded Actions) for HubSpot",
"type": "module",
"main": "index.js",
"scripts": {
"test": "jest",
"clear": "rm -rf dist",
"build": "npm run clear && rollup -c"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"rollup": "^4.18.0",
"ts-jest": "^29.1.5",
"tslib": "^2.6.3",
"typescript": "^5.4.5",
"zod": "^3.23.8"
},
"dependencies": {
"@hubspot/api-client": "^11.1.0",
"dotenv": "^16.4.5",
"tsx": "^4.15.7"
}
}