-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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
{
"name": "@fastnloud/nest-template",
"version": "1.0.1",
"description": "Template module for Nest that uses Handlebars to render templates.",
"homepage": "https://github.com/fastnloud/nest-template#readme",
"author": "jaap",
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"lint:ts": "prettier --check \"src/**/*.ts\"",
"lint:ts:fix": "prettier --write \"src/**/*.ts\"",
"prebuild": "rimraf dist",
"preversion": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastnloud/nest-template.git"
},
"dependencies": {
"handlebars": "^4.7.7"
},
"peerDependencies": {
"@nestjs/common": "^9.0.0 || ^10.0.0"
},
"devDependencies": {
"@types/node": "^18.0.0",
"npm-check-updates": "^16.10.13",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"rimraf": "^5.0.1",
"typescript": "^5.1.6"
},
"keywords": [
"nest",
"template",
"handlebars"
],
"files": [
"dist/**/*.{js,ts}"
]
}