-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 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
39
40
{
"name": "@naturalcycles/generator-backend-service",
"scripts": {
"prepare": "husky install",
"build-copy": "kpy ./src '**/templates/**' ./generators --dotfiles",
"build": "tsc && yarn build-copy",
"build-prod": "tsc -P ./tsconfig.prod.json && yarn build-copy"
},
"dependencies": {
"@naturalcycles/js-lib": "^14.76.0",
"@naturalcycles/nodejs-lib": "^12.62.0",
"@naturalcycles/yeoman-lib": "^1.2.2"
},
"devDependencies": {
"@naturalcycles/backend-lib": "^4.2.3",
"@naturalcycles/dev-lib": "^12.12.2",
"@types/node": "^17.0.13",
"jest": "^27.3.1"
},
"files": [
"generators"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/NaturalCycles/generator-backend-service"
},
"engines": {
"node": ">=16.10.0"
},
"keywords": [
"yeoman-generator"
],
"version": "1.4.1",
"description": "Yeoman generator to create a Backend service",
"author": "Natural Cycles Team",
"license": "MIT"
}