forked from Tpessia/ssr-proxy-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"name": "ssr-proxy-js",
"version": "1.0.5",
"description": "Server-Side Rendering Proxy",
"keywords": [
"ssr",
"proxy",
"spa"
],
"repository": {
"type": "git",
"url": "https://github.com/Tpessia/ssr-proxy-js"
},
"author": "Thiago Pessia",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./bin/cli.js",
"files": [
"bin/**/*",
"dist/**/*",
"src/**/*"
],
"scripts": {
"setup": "npm i -g np && npm i",
"build:dev": "rimraf dist && cross-env NODE_ENV=development webpack --config webpack.config.js --mode development --watch",
"build": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.js --mode production",
"publish:pack": "npm pack",
"publish:dry": "npm publish --dry-run",
"publish:np": "npm run build && np --no-yarn --no-tests --branch=main --no-2fa"
},
"dependencies": {
"axios": "^0.24.0",
"deepmerge": "^4.2.2",
"express": "^4.17.1",
"isbot": "^3.3.4",
"mime-types": "^2.1.34",
"minimist": "^1.2.5",
"puppeteer": "^10.4.0",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.5"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/mime-types": "^2.1.1",
"cross-env": "^7.0.3",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.4.4",
"webpack": "^5.62.1",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0"
}
}