-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 930 Bytes
/
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
{
"name": "dns-protect",
"version": "0.0.1",
"main": "./lib/cli/bin.js",
"license": "MIT",
"scripts": {
"setup": "husky install",
"cli": "ts-node ./src/cli/bin.ts",
"start": "ts-node ./src/cli/bin.ts start",
"test": "PORT=8000 jest --forceExit --runInBand --silent"
},
"dependencies": {
"@rushstack/ts-command-line": "^4.8.0",
"axios": "^0.21.1",
"chalk": "^4.1.1",
"dot-object": "^2.1.4",
"inquirer": "^8.1.1",
"redis": "^3.1.2"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/chalk": "^2.2.0",
"@types/dot-object": "^2.1.2",
"@types/inquirer": "^7.3.2",
"@types/jest": "^26.0.24",
"@types/node": "^15.14.0",
"@types/redis": "^2.8.30",
"@types/redis-mock": "^0.17.0",
"husky": "^7.0.1",
"jest": "^27.0.6",
"redis-mock": "^0.56.3",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}