saleor-apps-redis_apl/package.json

39 lines
947 B
JSON
Raw Normal View History

2023-02-07 17:57:26 +00:00
{
"name": "saleor-apps",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"templates/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
Introduce CRM App (#292) * Add template Cleanup Update queries Basic mailchimp client Add Oauth flow remove next auth * Auth flow, mailchimp button * Basic layouts * session saver for appbridge * ideas drop * basic iframe flow * iframe flow - with post message * saving token in backend * saving token in backend * Extracted settings manager * Refactor audience router * Remove old macaw ui * Nav and layout * display lists and wip add customer * Metadata updater * Allow iframe to NOT have app layout * Add segment coming soon * App layout * Add removing config button * Add iframe * Fix postmessages * Display lists * webhook settings * Connect webhook * remove comment * batch customer adding client * Update macaw * Fetching customers component * Add bulk sync * add temp ts-ignore until macaw is fixed * Improve ui * redesign * Extract sections * Redesign mailchimp login * Refactor sections * Extract mailchimp list picker * Add name mapping * WIP tags, extracted colocated queries to folders * Wip - not working CustomerUpdated subs * Add instructions * Fix webhook config state * Add external links * envs * Protected Oauth handler * Fix instructions * Squash some todos * Instructions update with gql * empty trygger * Add env validation * Fix error message * Update macaw and remove todos * Add metadata manager test * Replace Mailchimp enum to lowercase * Update oauth routes * Fix typo * Add loader to removing config box * Update labeler to include CRM app * Apply suggestions from CR * Fix linter
2023-04-06 07:26:56 +00:00
"start": "turbo run start",
2023-02-07 19:37:30 +00:00
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate": "turbo run generate",
"prepare": "husky install",
"github:release": "pnpm changeset tag && git push --follow-tags"
2023-02-07 17:57:26 +00:00
},
"devDependencies": {
2023-02-07 18:40:59 +00:00
"@changesets/cli": "^2.26.0",
"eslint": "^8.35.0",
"eslint-config-saleor": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"next": "^13.3.0",
"prettier": "^2.8.4",
"turbo": "^1.9.0"
2023-02-07 17:57:26 +00:00
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@8.2.0",
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,md}": "prettier --write"
}
2023-02-07 17:57:26 +00:00
}