-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 KB
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
{
"name": "tkick",
"version": "1.0.0",
"description": "",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"scripts": {
"dev": "docker compose up db -d && nodemon ./examples/main.ts",
"test": "docker compose up test_db -d && vitest run ",
"lint": "eslint --ext .ts .",
"format": "prettier --check --write .",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --check --write --ignore-unknown"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^18.15.11",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.0",
"jest": "^29.5.0",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"prettier": "2.8.8",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vitest": "^0.32.2"
},
"dependencies": {
"chalk": "^4.1.2",
"redis": "^4.6.5",
"uuid": "^9.0.0"
}
}