-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 998 Bytes
/
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
{
"name": "@gabrielrufino/node-template",
"version": "1.0.0",
"description": "An incredible project made in Node.js",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:watch": "npm run build -- --watch",
"lint": "eslint ./src",
"lint:fix": "npm run lint -- --fix",
"test": "vitest run",
"test:cov": "npm test -- --coverage",
"test:watch": "vitest",
"prepare": "husky"
},
"author": "Gabriel Rufino <contato@gabrielrufino.com>",
"license": "UNLICENSED",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@faker-js/faker": "^9.4.0",
"@vitest/coverage-v8": "^3.0.4",
"eslint": "^9.18.0",
"globals": "^15.14.0",
"husky": "^9.1.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0",
"vitest": "^3.0.4"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/gabrielrufino"
}
]
}