This repository has been archived by the owner on Aug 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
60 lines (60 loc) · 1.73 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
59
60
{
"name": "apiproxy",
"version": "1.0.0",
"description": "A proxy for front-end API calls",
"main": "index.js",
"scripts": {
"format": "prettier --write **/*.{js,ts,json}",
"lint": "eslint --fix **/*.{js,ts}",
"start": "node built/app.js",
"start:dev": "cross-env DEBUG=* NODE_ENV=development ts-node-dev src/app.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"postinstall": "git config core.hooksPath .githooks || true",
"prepare": "git config core.hooksPath .githooks || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MauricioRobayo/Projects.git"
},
"author": "Mauricio Robayo <[email protected]> (www.mauriciorobayo.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/MauricioRobayo/Projects/issues"
},
"homepage": "https://github.com/MauricioRobayo/Projects#readme",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/http-proxy-middleware": "^0.19.3",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"cross-env": "^7.0.3",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-import": "^2.22.1",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"**/*.{js,ts,json}": [
"prettier --write"
],
"**/*.{js,ts}": [
"eslint --fix"
]
},
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.4"
}
}