generated from caelinsutch/typescript-eslint-prettier-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "tournament-manager",
"version": "2.4.3",
"description": "",
"main": "dist/src/index.js",
"scripts": {
"test": "jest",
"typecheck": "tsc",
"start": "tsc -p tsconfig-build.json && node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": ["tournament", "manager", "tournament manager", "manage tournaments", "manage", "tournaments"],
"author": "Pedro Henrique Bufulin de Almeida",
"license": "ISC",
"devDependencies": {
"@types/edmonds-blossom": "^1.0.2",
"@types/jest": "^27.4.0",
"@typescript-eslint/eslint-plugin": "3.3.0",
"@typescript-eslint/parser": "3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.4",
"jest": "^27.4.7",
"nodemon": "2.0.4",
"prettier": "2.0.5",
"ts-jest": "^27.1.3",
"ts-node": "8.10.2",
"typescript": "4.9.3"
},
"dependencies": {
"edmonds-blossom": "^1.0.0"
}
}