mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-18 17:12:53 +03:00
31f3950439
* Add a custom rule to prevent colors from being hardcoded in ESLint * Refactor colors * Create packages folder and fix colors * Remove external dependency for css alphabetical order linting * Fix install with yarn --------- Co-authored-by: Charles Bochet <charles@twenty.com>
42 lines
971 B
JSON
42 lines
971 B
JSON
{
|
|
"name": "twenty-cli",
|
|
"version": "1.0.5",
|
|
"type": "module",
|
|
"description": "A simple CLI to install and interact with Twenty",
|
|
"files": [
|
|
"!lib/__tests__/**/*",
|
|
"lib/**/*",
|
|
"bin/**/*"
|
|
],
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"@types/gradient-string": "^1.1.2",
|
|
"chalk": "^5.2.0",
|
|
"commander": "^10.0.1",
|
|
"dotenv": "^16.1.1",
|
|
"gradient-string": "^2.0.2",
|
|
"open": "^9.1.0",
|
|
"pg": "^8.11.0",
|
|
"prompts": "^2.4.2"
|
|
},
|
|
"bin": {
|
|
"twenty": "./lib/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.1",
|
|
"@types/node": "^20.2.5",
|
|
"@types/pg": "^8.10.1",
|
|
"@types/prompts": "^2.4.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.59.8",
|
|
"eslint-config-prettier": "^8.8.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"jest": "^29.5.0",
|
|
"ts-jest": "^29.1.0",
|
|
"typescript": "^5.0.4"
|
|
}
|
|
}
|