-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.17 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.17 KB
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
{
"name": "node-dev-reverse-proxy",
"version": "0.0.1",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"pizza": "./dist/index.js"
},
"scripts": {
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"buildw": "nodemon --watch 'src/**/*.ts' --exec tsc -p .",
"test": "sudo npm i -g && pizza",
"refresh": "rm -rf ./node_modules ./package-lock.json ./yarn-lock.json && yarn"
},
"dependencies": {
"bufferhelper": "^0.2.1",
"chalk": "^3.0.0",
"cheerio": "^1.0.0-rc.3",
"clear": "^0.1.0",
"commander": "^4.0.1",
"concat-stream": "^2.0.0",
"cookiejar": "^2.1.2",
"express": "^4.17.1",
"figlet": "^1.2.4",
"http-proxy": "^1.18.0",
"http-proxy-middleware": "^0.20.0",
"morgan": "^1.9.1",
"winston": "^3.2.1",
"zlib": "^1.0.5"
},
"devDependencies": {
"@liftr/tscov": "^1.4.4",
"@types/express": "^4.17.2",
"@types/node": "^12.12.14",
"nodemon": "^2.0.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.2"
}
}