-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "node-rest-api",
"version": "1.0.0",
"description": "Api rest developed using node, typescript, jest and other packages",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node-dev ./src/index.ts",
"commit": "cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ViniciusMaiaM/NodeApiRest.git"
},
"author": "Vinicius Maia",
"license": "MIT",
"bugs": {
"url": "https://github.com/ViniciusMaiaM/NodeApiRest/issues"
},
"homepage": "https://github.com/ViniciusMaiaM/NodeApiRest#readme",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http-status-codes": "^2.2.0",
"yup": "^1.0.2"
},
"devDependencies": {
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/express": "^4.17.17",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.36.0",
"husky": "^8.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}