2
0

🚀 Init Turbo Repo

This commit is contained in:
Baptiste Arnaud
2021-12-16 15:19:05 +01:00
parent da9459edf3
commit 772b16c6ce
17 changed files with 6150 additions and 11730 deletions

View File

@ -1,32 +1,25 @@
{
"name": "bot-engine",
"packageManager": "yarn@3.1.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"version": "0.1.0",
"main": "src/index.ts",
"types": "src/index.ts",
"files": [
"dist"
"src/style.css"
],
"types": "dist/index.d.ts",
"dependencies": {
"db": "*"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/react": "^17.0.37",
"npm-run-all": "^4.1.5",
"rollup": "^2.60.2",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^2.2.19",
"typescript": "^4.5.2"
"tailwindcss": "^3.0.5",
"typescript": "^4.5.4"
},
"peerDependencies": {
"react": "^17.0.2"
},
"scripts": {
"build": "run-s tailwind:generate rollup",
"tailwind:generate": "tailwindcss -o src/style.css",
"rollup": "rollup -c"
"build": "yarn tailwind:generate",
"tailwind:generate": "tailwindcss -o src/style.css --minify"
}
}