forked from garageScript/myProxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.42 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
{
"name": "myproxy",
"version": "1.0.0",
"description": "Application that proxies requests to other servers",
"main": "app.js",
"scripts": {
"test": "jest --coverage",
"start": "npm run build:live",
"setup": "./scripts/setup.sh",
"build": "tsc -p .",
"build:live": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/app.ts",
"prettier:base": "prettier --parser typescript --single-quote --no-semi",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\"",
"coverage": "nyc npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garageScript/myproxy.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/garageScript/myproxy/issues"
},
"homepage": "https://github.com/garageScript/myproxy#readme",
"dependencies": {
"@types/cookie-parser": "^1.4.1",
"@types/express": "^4.17.0",
"cookie-parser": "^1.4.4",
"dotenv": "^8.1.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"husky": "^3.0.3",
"pretty-quick": "^1.11.1"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"@types/node": "^12.7.1",
"jest": "^24.8.0",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"source-map-support": "^0.5.13",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier:write",
"pre-push": "npm test"
}
}
}