-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 815 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 815 Bytes
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
{
"name": "reverseproxy",
"version": "1.2.1",
"description": "Reverse proxy API with nginx backend",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf dist",
"build": "npm run clean && tsc",
"build:dev": "npm run clean && tsc -w",
"start": "node .",
"start:dev": "nodemon .",
"dev": "concurrently -k -p '[{name}]' -n 'TypeScript,App' -c 'yellow.bold,cyan.bold' 'npm:build:dev' 'npm:start:dev'"
},
"author": "j122j",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.21",
"concurrently": "^6.2.1",
"nodemon": "^2.0.12",
"rimraf": "^3.0.2",
"typescript": "^4.3.5"
},
"dependencies": {
"dotenv": "^10.0.0",
"express": "^4.17.1"
}
}