-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.08 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@soufantech/node-ts-lib-boilerplate",
"version": "0.0.0",
"description": "SouFan's TypeScript boilerplate for Node.js libraries",
"keywords": [],
"author": {
"name": "SouFan Team",
"email": "no-reply@soufan.com.br",
"url": "https://github.com/soufantech"
},
"repository": {
"type": "git",
"url": "https://github.com/soufantech/node-ts-lib-boilerplate.git"
},
"homepage": "https://github.com/soufantech/node-ts-lib-boilerplate#readme",
"bugs": {
"url": "https://github.com/soufantech/node-ts-lib-boilerplate/issues"
},
"license": "UNLICENSED",
"private": true,
"publishConfig": {
"access:": "restricted"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "husky install",
"commit": "cz",
"start": "ts-node src/index.ts",
"watch": "ts-node-dev src/index.ts",
"test": "jest --pass-with-no-tests",
"lint": "tsc --noEmit && eslint './src/**/*' --ext .ts",
"clear": "rm -rf dist",
"prebuild": "npm run clear",
"build": "tsc -p ./tsconfig.build.json",
"prepublishOnly": "npm run build && npm run test --silent"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.12.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-import-helpers": "^1.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.13.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.3",
"typescript-eslint": "^0.0.1-alpha.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}