-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.34 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.34 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
43
44
45
46
47
48
{
"name": "threedify-proxy",
"version": "1.0.0",
"description": "Proxy for threedify web app and api.",
"scripts": {
"build": "tsc -p .",
"start": "node -r dotenv/config dist/index.js",
"start:dev": "nodemon -r dotenv/config src/index.ts",
"lint": "pretty-quick --check --pattern \"src/**/*\" && eslint",
"lint:fix": "pretty-quick --write --pattern \"src/**/*\" && eslint --fix"
},
"private": "true",
"license": "MIT",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/cors": "^2.8.7",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.7",
"@types/express-http-proxy": "^1.6.1",
"@types/http-errors": "^1.8.0",
"@types/morgan": "^1.9.1",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"nodemon": "^2.0.4",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"dependencies": {
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-http-proxy": "^1.6.2",
"http-errors": "^1.8.0",
"morgan": "^1.10.0"
},
"husky": {
"hooks": {
"pre-commit": "eslint && pretty-quick --staged"
}
}
}