forked from nodepolus/nodepolus_old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 893 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
{
"name": "nodepolus2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start": "npm-run-all --parallel watch:build watch:server --print-label",
"watch:build": "tsc --watch",
"watch:server": "nodemon './dist/index.js' --watch './dist'",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/randomstring": "^1.1.6",
"buffer": "^5.7.0",
"randomstring": "^1.1.5"
},
"devDependencies": {
"@types/node": "^14.14.6",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"eslint": "^7.12.1",
"eslint-config-recommended": "4.1.0",
"nodemon": "^2.0.6",
"npm-run-all": "^4.1.5",
"ts-node": "^9.0.0",
"typescript": "^4.0.5",
"udp-proxy": "1.2.0"
}
}