-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
36 lines (36 loc) · 1.01 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
36
{
"name": "typescript-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"build": "tsc --build tsconfig.json",
"build:watch": "tsc --build tsconfig.json --watch",
"test": "jest --verbose",
"test:watch": "npm t -- --watchAll",
"test:coverage": "npm t -- --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danielalvarezm/typescript-boilerplate.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danielalvarezm/typescript-boilerplate/issues"
},
"homepage": "https://github.com/danielalvarezm/typescript-boilerplate#readme",
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-google": "^0.14.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
}
}