-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 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
37
38
{
"name": "nest-jsx-template-engine",
"version": "0.2.4",
"description": "JSX-based + typescript template engine for NestJS applications",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist && tsc",
"pre:publish": "build",
"publish": "npm publish",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish"
},
"keywords": [
"nestjs",
"jsx",
"template engine",
"ssr"
],
"author": "sjones6",
"homepage": "https://github.com/sjones6/nestjs-jsx-template-engine",
"repository": {
"type": "git",
"url": "https://github.com/sjones6/nestjs-jsx-template-engine.git"
},
"bugs": "https://github.com/sjones6/nestjs-jsx-template-engine/issues",
"license": "MIT",
"devDependencies": {
"@types/node": "^14.0.14",
"express": "^4.17.1",
"rxjs": "^6.6.0",
"typescript": "^3.9.5"
},
"dependencies": {
"@nestjs/common": "^7.2.0",
"@types/express": "^4.17.7",
"reflect-metadata": "^0.1.13"
}
}