-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 989 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 989 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
27
28
29
30
31
32
33
34
35
36
{
"name": "github-playright",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "NODE_ENV=development nodemon --exec node --loader ts-node/esm ./src/index.ts",
"start": "NODE_ENV=development node build/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .ts ./src",
"lint:fix": "eslint --fix --ext .ts ./src",
"deploy": "fly deploy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@json2csv/plainjs": "^7.0.3",
"dotenv": "^16.3.1",
"mongoose": "^7.6.3",
"playright": "^0.0.22",
"redis": "^4.6.10"
},
"type": "module",
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^1.5.4",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"nodemon": "^3.0.3",
"ts-node-dev": "^2.0.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}