-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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": "ddd-civitour",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"start:dev": "node dist/server.js --watch",
"build": "tsc",
"start": "node dist/server.js",
"test": "jest",
"prepare": "husky install",
"lint:fix": "eslint --fix ./src/**/*.ts",
"editor:fix": "editorconfig-tools fix",
"-----": "---------CI----------",
"ci:test": "npm test -- --coverage --watchAll=false",
"start:dev:db": "./scripts/start-dev-db.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EzequielBurgosL/katas-typescript.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "29.5.1",
"@types/node": "18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-config-xo": "^0.43.1",
"husky": "^8.0.0",
"jest": "29.5.0",
"jest-ts-webcompat-resolver": "1.0.0",
"prettier": "2.8.8",
"ts-jest": "29.1.0",
"typescript": "5.0.4"
},
"dependencies": {
"dotenv": "^16.3.1",
"sequelize": "^6.32.1"
}
}