generated from sebastianluczak/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 937 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
{
"name": "battleships-ts",
"version": "2.0.0",
"description": "Simple Battleships games in TypeScript.",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"start": "npm-run-all --parallel watch:build watch:server --print-label",
"compile": "tsc && node ./dist/index.js",
"watch:build": "tsc --watch",
"watch:server": "nodemon './dist/index.js' --watch './dist'",
"test": "npx eslint src"
},
"author": "Sebastian Łuczak <[email protected]",
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.28",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"eslint": "^8.57.0",
"eslint-config-xo": "^0.44.0",
"eslint-config-xo-typescript": "^4.0.0",
"nodemon": "^3.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"typescript": "^5.4.2"
},
"dependencies": {
"keypress": "^0.2.1"
}
}