-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
95 lines (95 loc) · 2.77 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@algolia/renderscript",
"version": "2.3.4",
"description": "A custom JavaScript rendering engine based on Playwright",
"main": "dist/index.js",
"scripts": {
"build": "yarn clean && yarn tsc && yarn browser:adblocks",
"ci:start": "ALLOW_LOCALHOST=true yarn start",
"clean": "rm -rf dist/",
"dev": "nodemon",
"dev:run": "yarn build && NODE_ENV=development node -r dotenv/config dist/index.js",
"docker:build": "./scripts/build.sh",
"browser:adblocks": "./scripts/update_adblock_hosts.sh",
"lint": "eslint --ext=jsx,ts,tsx,js .",
"start": "UV_THREADPOOL_SIZE=100 node dist/index.js",
"semantic-release": "semantic-release",
"test": "jest src/"
},
"repository": {
"type": "git",
"url": "https://github.com/algolia/renderscript.git"
},
"keywords": [
"algolia",
"playwright",
"js renderer",
"rendertron",
"prerender",
"javascript rendering",
"ssr"
],
"author": "Algolia <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/algolia/renderscript/issues"
},
"engines": {
"node": "18.18.2"
},
"homepage": "https://github.com/algolia/renderscript#readme",
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/cookie-parser": "1.4.6",
"@types/csurf": "1.11.5",
"@types/express": "4.17.21",
"@types/jest": "29.5.8",
"@types/node": "18.18.10",
"@types/uuid": "9.0.7",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@typescript-eslint/parser": "6.11.0",
"dotenv": "16.3.1",
"ejs": "3.1.9",
"eslint": "8.54.0",
"eslint-config-algolia": "22.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-algolia": "2.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-jsdoc": "46.9.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
"jest": "29.7.0",
"nodemon": "3.0.1",
"pino-pretty": "10.2.3",
"prettier": "3.1.0",
"semantic-release": "22.0.8",
"ts-jest": "29.1.1",
"ts-node": "10.9.2",
"typescript": "5.2.2"
},
"dependencies": {
"@algolia/dns-filter": "1.1.25",
"@sentry/node": "7.80.1",
"altheia-async-data-validator": "5.0.15",
"body-parser": "1.20.2",
"cookie-parser": "1.4.6",
"csurf": "1.11.0",
"express": "4.19.2",
"hot-shots": "10.0.0",
"pino": "8.16.2",
"playwright": "1.49.0",
"undici": "5.28.4",
"uuid": "9.0.1"
},
"resolutions": {
"chalk": "4.1.2",
"@semantic-release/npm": "10.0.6"
},
"packageManager": "[email protected]"
}