forked from Chainlit/chainlit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.36 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/js": "^10.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"cypress": "^14.5.3",
"cypress-plugin-steps": "1.2.1",
"cypress-split": "^1.24.31",
"dotenv": "^16.3.1",
"eslint": "^10",
"eslint-plugin-chai-friendly": "^1.1.1",
"eslint-plugin-cypress": "^6",
"fkill": "^9.0.0",
"globals": "^17.4.0",
"husky": "^9.1.6",
"lint-staged": "^13.3.0",
"prettier": "^3.8.1",
"shell-exec": "^1.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"typescript-eslint": "^8.58.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"build": "pnpm run --recursive build",
"lint": "eslint",
"lint:fix": "pnpm lint --fix",
"format-check:files": "prettier --check --ignore-unknown",
"format-check": "pnpm format-check:files .",
"format:files": "pnpm format-check:files --write",
"format": "pnpm format-check --write",
"type-check": "pnpm run --parallel type-check",
"test": "pnpm run --recursive test",
"test:e2e": "cypress run",
"test:e2e:interactive": "cypress open"
},
"pnpm": {
"overrides": {
"braces@<3.0.3": ">=3.0.3",
"micromatch@<4.0.8": ">=4.0.8"
}
},
"packageManager": "pnpm@9.15.9"
}