-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.36 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "node-typescript-jest-boilerplate",
"version": "0.0.1",
"description": "NodeJS typescript + jest boilerplate",
"keywords": [
"boilerplate",
"typescript",
"jest"
],
"author": "Brian Schlenker <[email protected]>",
"license": "MIT",
"repository": "bschlenk/node-typescript-jest-boilerplate",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!**/__tests__/**/*"
],
"scripts": {
"prepare": "husky install",
"clean": "rm -rf build coverage",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"test:unit": "jest",
"test:watch": "npm run jest -- --watch",
"test": "npm run lint && npm run test:unit",
"watch": "nodemon",
"build": "tsc",
"prepublishOnly": "npm run test && npm run build"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"@types/node": "^16.0.0",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^7.0.0",
"jest": "^27.0.6",
"lint-staged": "^11.0.0",
"nodemon": "^2.0.9",
"prettier": "^2.3.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}