2
0
Files
bot/packages/bot-engine/package.json

54 lines
1.4 KiB
JSON
Raw Normal View History

2021-12-08 09:33:25 +01:00
{
"name": "bot-engine",
2021-12-23 09:44:47 +01:00
"license": "AGPL-3.0-or-later",
2021-12-16 15:19:05 +01:00
"version": "0.1.0",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
2022-11-21 11:12:43 +01:00
"build": "pnpm tsc --noEmit && tsup",
"dev": "tsup --watch",
"lint": "eslint --fix \"src/**/*.ts*\""
},
2021-12-16 15:19:05 +01:00
"dependencies": {
2022-12-18 11:50:56 +01:00
"@stripe/react-stripe-js": "1.16.1",
2022-12-05 16:16:49 +01:00
"@stripe/stripe-js": "1.46.0",
"prop-types": "15.8.1",
"qs": "6.11.0",
2022-12-25 09:13:33 +01:00
"react-frame-component": "5.2.4",
2022-12-05 16:16:49 +01:00
"react-phone-number-input": "3.2.13",
2022-12-18 11:50:56 +01:00
"react-scroll": "1.8.9",
2022-08-08 08:21:36 +02:00
"react-transition-group": "4.4.5",
"resize-observer": "1.0.4"
2021-12-16 15:19:05 +01:00
},
2021-12-08 09:33:25 +01:00
"devDependencies": {
2022-12-18 11:50:56 +01:00
"@types/node": "18.11.17",
"@types/qs": "6.9.7",
2022-12-05 16:16:49 +01:00
"@types/react": "18.0.26",
"@types/react-phone-number-input": "3.0.14",
2022-11-15 15:42:13 +01:00
"@types/react-scroll": "1.8.5",
"@types/react-transition-group": "4.4.5",
2022-11-02 19:45:46 +01:00
"autoprefixer": "10.4.13",
2022-08-08 08:21:36 +02:00
"db": "workspace:*",
2022-12-25 09:13:33 +01:00
"esbuild": "^0.16.10",
2022-12-18 11:50:56 +01:00
"eslint": "8.30.0",
2022-11-21 11:12:43 +01:00
"eslint-config-custom": "workspace:*",
2022-08-08 08:21:36 +02:00
"models": "workspace:*",
2022-12-18 11:50:56 +01:00
"postcss": "8.4.20",
"prettier": "2.8.1",
"react": "18.2.0",
"react-dom": "18.2.0",
2022-11-15 15:42:13 +01:00
"tailwindcss": "3.2.4",
"tsconfig": "workspace:*",
"tsup": "6.5.0",
2022-11-21 11:12:43 +01:00
"typebot-js": "workspace:*",
2022-12-18 11:50:56 +01:00
"typescript": "4.9.4",
"utils": "workspace:*"
2021-12-08 09:33:25 +01:00
},
2021-12-08 09:40:47 +01:00
"peerDependencies": {
2022-08-08 08:21:36 +02:00
"db": "workspace:*",
"react": "18.0.0",
2022-11-29 10:02:40 +01:00
"react-dom": "18.0.0"
2021-12-08 09:33:25 +01:00
}
}