-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "netsim-cli",
"version": "0.0.1",
"description": "A cli network simulator",
"main": "app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc && node dist/app.js",
"start-dev": "nodemon --exec 'npm run start' -i dist/ -e ts,tsx,js,jsx,nsim",
"lint": "./node_modules/.bin/eslint src/"
},
"author": "Areeb Beigh",
"license": "ISC",
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/netmask": "^1.0.30",
"@types/node": "^14.14.41",
"@types/uuid": "^8.3.0",
"@types/yargs": "^16.0.1",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^6.13.0",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.2",
"typescript": "^4.2.4"
},
"dependencies": {
"chalk": "^4.1.0",
"inquirer": "^8.0.0",
"netmask": "^2.0.2",
"uuid": "^8.3.2",
"yargs": "^16.2.0"
}
}