-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 731 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 731 Bytes
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
{
"name": "nodemonitor-ts",
"version": "1.0.1",
"scripts": {
"dev": "ts-node --files src/index.ts",
"start": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' --files src/index.ts",
"build": "rm -rf build && tsc -p ."
},
"keywords": [],
"author": "U8Y",
"license": "MIT",
"dependencies": {
"@types/assert": "^1.5.4",
"@types/redis": "^2.8.28",
"ansi-styles": "^6.0.0",
"assert": "^2.0.0",
"colors": "^1.4.0",
"dotenv": "^8.2.0",
"minecraft-server-util": "^3.5.1",
"prompt": "^1.1.0",
"redis": "^3.1.1",
"shelljs": "^0.8.4"
},
"devDependencies": {
"@types/prompt": "^1.1.0",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}