-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.04 KB
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
{
"name": "typescript-boilerplate",
"version": "3.0.0",
"description": "Basic boilerplate project with TypeScript for Katas",
"main": "build/index.js",
"files": [
"build",
"!build/**/*.test.*"
],
"contributors": [
"Adrián Ferrera <adrian.ferrera@leanmind.es>",
"Daniel Ramos <daniel.ramos@leanmind.es>",
"Michael Reyes <michael.reyes@leanmind.es>",
"Airan Sanchez <airan@leanmind.es>"
],
"license": "ISC",
"scripts": {
"prepare": "npm run build",
"prestart": "npm run build",
"start": "node build/index.js",
"build": "npm run lint && tsc --noEmit",
"lint": "eslint . --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "vitest run --reporter=verbose",
"test:watch": "npm run test -- --watchAll",
"test:coverage": "npm run test -- --coverage"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"vitest": "^0.34.6"
}
}