-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.16 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
{
"name": "simple-cors",
"version": "0.0.1",
"description": "a simple cors reverse proxy",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"cp": "node -e \"require('fs').copyFileSync('src/weConfig.json' , 'dist/weConfig.json')\"",
"lint": "npx eslint .",
"build": "npm run cp && npx tsc",
"serve": "node dist/server.js",
"debug": "npx nodemon src/server.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arunaruljothi/simple-cors.git"
},
"keywords": [
"simple",
"cors",
"nodejs"
],
"author": "arun aruljothi",
"license": "ISC",
"bugs": {
"url": "https://github.com/arunaruljothi/simple-cors/issues"
},
"homepage": "https://github.com/arunaruljothi/simple-cors#readme",
"dependencies": {
"http-proxy": "^1.18.1"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/http-proxy": "^1.17.10",
"@types/node": "^18.14.6",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"nodemon": "^2.0.21",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}