-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
{
"name": "root",
"private": true,
"version": "1.0.1",
"description": "Meow meow meow",
"scripts": {
"build": "turbo run build",
"format": "turbo run format",
"format:check": "turbo run format:check",
"lint": "turbo run lint",
"prepare": "husky install",
"publish:packages": "turbo run publish:package",
"test:integration:js": "turbo test:integration:js",
"test:js": "turbo run test:js",
"test:js:coverage": "turbo run test:js:coverage",
"test:uncommitted": "turbo run test:uncommitted --filter [HEAD]",
"test:unit:js": "turbo run test:unit:js",
"test": "turbo run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cuaklabs/nestjs-meow.git"
},
"author": "Cuak McCuackl <cuak.mccuakl@cuaklabs.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/cuaklabs/nestjs-meow/issues"
},
"homepage": "https://github.com/cuaklabs/nestjs-meow#readme",
"devDependencies": {
"@cuaklabs/eslint-config-nestjs": "workspace:*",
"@cuaklabs/nestjs-jest-config": "workspace:*",
"@cuaklabs/nestjs-prettier-config": "workspace:*",
"@cuaklabs/nestjs-typescript-config": "workspace:*",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"turbo": "2.4.4"
},
"standard-version": {
"skip": {
"tag": true
}
}
}