-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "rendergun",
"version": "0.9.0",
"description": "A pre-render service for client-side rendered websites",
"repository": "https://github.com/goenning/rendergun",
"main": "dist/index.js",
"bin": {
"rendergun": "dist/index.js"
},
"scripts": {
"start": "node dist/index.js",
"dev": "tsc && DEBUG=http,renderer:*,error,cache NODE_ENV=development node dist/index.js",
"test": "jest",
"lint": "tslint --project .",
"build": "tsc",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"keywords": [
"ssr",
"puppeteer",
"server-side-rendering",
"docker"
],
"author": "goenning <[email protected]>",
"license": "MIT",
"dependencies": {
"compression": "1.7.4",
"debug": "4.2.0",
"express": "4.17.1",
"lru-cache": "6.0.0",
"puppeteer": "5.3.1"
},
"devDependencies": {
"@types/lru-cache": "5.1.0",
"@types/compression": "1.7.0",
"@types/debug": "4.1.5",
"@types/express": "4.17.8",
"@types/jest": "26.0.14",
"@types/node": "14.11.2",
"@types/puppeteer": "3.0.2",
"jest": "26.4.2",
"ts-jest": "26.4.1",
"tslint": "6.1.3",
"typescript": "4.0.3"
}
}