generated from fvsystem/node-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "node-typescript-template",
"version": "0.0.1",
"description": "Template for typescript node",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc",
"commit": "cz",
"start": "node index.js",
"dev": "nodemon --watch 'src/' --exec 'ts-node src/index.ts' -e ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fvsystem/cache-template.git"
},
"author": "Lucas Rego",
"license": "ISC",
"bugs": {
"url": "https://github.com/fvsystem/node-typescript-template/issues"
},
"homepage": "https://github.com/fvsystem/node-typescript-template#readme",
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@types/express": "^4.17.13",
"@types/jest": "latest",
"@types/pg": "^8.6.5",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"commitizen": "latest",
"cz-conventional-changelog": "latest",
"eslint": "latest",
"eslint-config-airbnb-base": "latest",
"eslint-config-prettier": "latest",
"eslint-import-resolver-typescript": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-prettier": "latest",
"husky": "latest",
"jest": "latest",
"nodemon": "latest",
"prettier": "latest",
"ts-jest": "latest",
"ts-node": "latest",
"typescript": "latest"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@elastic/ecs-winston-format": "^1.3.1",
"@faker-js/faker": "^7.3.0",
"express": "^4.18.1",
"pg": "^8.7.3",
"winston": "^3.8.1"
}
}