-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.08 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
{
"name": "ports-scanner",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"start:dev": "nodemon",
"build": "rimraf ./dist && tsc",
"start": "npm run build && node dist/src/index.js",
"test": "mocha dist/tests/index.test.ts"
},
"scripts": {
"start:dev": "nodemon",
"build": "tsc",
"start": "npm run build && node dist/src/index.js",
"test": "mocha dist/tests/index.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.11",
"@types/express-rate-limit": "^5.1.1",
"@types/node": "^14.14.22",
"@types/portscanner": "^2.1.0",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@types/chai": "^4.2.14",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^8.2.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-rate-limit": "^5.2.5",
"helmet": "^4.4.1",
"ip-regex": "^4.3.0",
"mocha": "^8.2.1",
"portscanner": "^2.2.0"
}
}