Blame Raw
· · · 18 lines (573 B)
0 contributors
1{
2 "name": "sillytavern-tests",
3 "type": "module",
4 "license": "AGPL-3.0",
5 "scripts": {
6 "test": "npm run test:unit && npm run test:e2e",
7 "test:unit": "node --experimental-vm-modules node_modules/jest/bin/jest.js --config jest.config.json",
8 "test:e2e": "playwright test",
9 "lint": "eslint \"**/*.js\" ./*.js",
10 "lint:fix": "eslint \"**/*.js\" ./*.js --fix"
11 },
12 "dependencies": {
13 "@playwright/test": "^1.56.1",
14 "@types/jest": "^29.5.12",
15 "eslint": "^8.57.0",
16 "jest": "^29.7.0"
17 }
18}