forked from Chainlit/chainlit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
23 lines (23 loc) · 828 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.59.5",
"cypress": "^12.9.0",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"husky": "^8.0.0",
"prettier": "^2.8.8",
"tree-kill": "^1.2.2",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"scripts": {
"test": "npx ts-node ./cypress/support/e2e.ts && (cd src/chainlit/frontend && npm run test)",
"prepare": "husky install",
"lintUi": "cd src/chainlit/frontend && npm run lint",
"formatUi": "cd src/chainlit/frontend && npm run format",
"formatPython": "black `git ls-files | grep '.py$'`",
"installUiDeps": "cd src/chainlit/frontend && npm install",
"buildUi": "(cd src/chainlit/frontend && npm run build)",
"build": "(cd src/chainlit/frontend && npm run build) && (cd src && poetry build)"
}
}