20 lines
456 B
JSON
20 lines
456 B
JSON
{
|
|
"name": "screenshot",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "npm run build && node --test dist/**/*.test.js",
|
|
"start": "node dist/server.js",
|
|
"dev": "tsc --watch & node --watch dist/server.js"
|
|
},
|
|
"dependencies": {
|
|
"express": "^5.2.1",
|
|
"playwright": "^1.59.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^5.0.6",
|
|
"@types/node": "^25.6.1",
|
|
"typescript": "^6.0.3"
|
|
}
|
|
}
|