-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 929 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 929 Bytes
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
{
"name": "smartfolio",
"version": "1.0.0",
"description": "Smart Multi-Asset Portfolio Management with AI",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report tests/e2e-report"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@playwright/test": "^1.56.0",
"happy-dom": "^13.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jsdom": "^27.4.0",
"lighthouse": "^13.0.1",
"puppeteer": "^24.37.1"
}
}