-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "ssr-proxy-js",
"version": "1.3.0",
"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": {
"init": "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": "^1.7.2",
"clone-deep": "^4.0.1",
"deepmerge": "^4.3.1",
"express": "^4.19.2",
"isbot": "^5.1.13",
"mime-types": "^2.1.35",
"minimist": "^1.2.8",
"node-schedule": "^2.1.1",
"puppeteer": "^22.13.1",
"winston": "^3.13.1",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@types/clone-deep": "^4.0.4",
"@types/express": "^4.17.21",
"@types/mime-types": "^2.1.4",
"@types/node-schedule": "^2.1.7",
"cross-env": "^7.0.3",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.1",
"typescript": "^4.9.5",
"webpack": "^5.93.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
}
}