-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.46 KB
/
package.json
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
48
49
50
{
"name": "website-screenshot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"setup": "npm ci",
"build": "rimraf ./dist/* && ttsc -p src/tsconfig.json",
"test": "jest",
"lint:check": "eslint .",
"lint:fix": "npm run lint:check -- --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"check": "npm run build && npm run lint:check && npm run format:check && npm run test",
"start:prod": "node dist/main",
"start:dev": "nodemon"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@cliqz/adblocker-playwright": "^1.26.0",
"@types/express": "^4.17.17",
"cross-fetch": "^3.1.4",
"express": "^4.18.2",
"express-query-boolean": "github:detachhead/express-query-boolean#1cf5184a97367a0f0c7a2c4427878ae9aa276bcd",
"normalize-url": "^4.5.0",
"playwright": "^1.31.0",
"typia": "^3.5.7"
},
"devDependencies": {
"@detachhead/eslint-config": "^0.0.23",
"@jest/types": "^27.2.5",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@types/eslint": "^8.4.6",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.5",
"@types/supertest": "^2.0.10",
"commander": "^10.0.0",
"jest": "^27.2.5",
"nodemon": "^2.0.6",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"supertest": "^6.0.1",
"ts-jest": "^27.0.6",
"ts-node": "^10.2.1",
"ttypescript": "^1.5.15",
"typescript": "^4.9.5"
}
}