mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-25 21:13:01 +03:00
f7034d6e7d
* Upgrade to node 18.17.1 and regroup dependencies in root package.json * Sort package.json * Fix lint * Migrate zapier
27 lines
856 B
JSON
27 lines
856 B
JSON
{
|
|
"name": "twenty-zapier",
|
|
"version": "1.0.0",
|
|
"description": "Effortlessly sync Twenty with 3000+ apps. Automate tasks, boost productivity, and supercharge your customer relationships!",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"nx": "NX_DEFAULT_PROJECT=twenty-zapier node ../../node_modules/nx/bin/nx.js",
|
|
"format": "prettier . --write \"!build\"",
|
|
"test": "yarn build && jest --testTimeout 10000 --rootDir ./lib/test",
|
|
"build": "yarn clean && tsc",
|
|
"deploy": "yarn build && zapier push",
|
|
"validate": "yarn build && zapier validate",
|
|
"clean": "rimraf ./lib ./build",
|
|
"watch": "yarn clean && tsc --watch",
|
|
"_zapier-build": "yarn build"
|
|
},
|
|
"engines": {
|
|
"node": "^18.17.1",
|
|
"npm": "please-use-yarn",
|
|
"yarn": "^4.0.2"
|
|
},
|
|
"private": true,
|
|
"zapier": {
|
|
"convertedByCLIVersion": "15.4.1"
|
|
}
|
|
}
|