-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.88 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
60
61
62
{
"name": "@redredgroup/nestjs",
"private": true,
"description": "Mixpanel integration to a NestJS application",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/REDREDGROUP/nestjs-mixpanel",
"repository": "https://github.com/REDREDGROUP/nestjs-mixpanel.git",
"bugs": "https://github.com/REDREDGROUP/nestjs-mixpanel/issues",
"author": {
"name": "Seihoon Kim",
"email": "[email protected]",
"url": "https://github.com/jieey1140"
},
"maintainers": [
{
"name": "jieey1140",
"email": "[email protected]",
"url": "https://github.com/jieey1140"
}
],
"scripts": {
"build": "tsup-node",
"build:production": "NODE_ENV=production tsup-node",
"build:watch": "tsup-node --watch",
"format": "turbo run format",
"lint": "eslint \"**/*.ts\" --fix",
"lint:format": "prettier --check .",
"syncpack:fix": "syncpack fix-mismatches --config ./.syncpackrc.js",
"syncpack:format": "syncpack format --config ./.syncpackrc.js",
"syncpack:lint": "syncpack lint --config ./.syncpackrc.js",
"syncpack:list": "syncpack list --config ./.syncpackrc.js",
"test": "vitest",
"test:coverage": "vitest --coverage",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@commitlint/cli": "18.2.0",
"@commitlint/config-conventional": "18.1.0",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"prettier": "3.0.3",
"syncpack": "11.2.1",
"turbo": "1.10.14"
},
"engines": {
"node": "18.16.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"disableScopeLowerCase": false,
"disableSubjectLowerCase": false,
"maxHeaderWidth": 100,
"maxLineWidth": 100
}
}
}