-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "@noda/1.0.0",
"version": "1.0.0",
"description": "Noda - Glabal cluster queue environnement",
"main": "src/index.js",
"repository": "https://github.com/jkehlDev/Noda.git",
"author": "jkehlDev <jkehl.dev@gmail.com>",
"license": "GPL-3.0",
"scripts": {
"prepare": "husky install",
"format": "prettier-eslint \"src/**/*.+(js|ts|json)\" --write",
"test": "jest src/",
"build": "rm -r -f dist && tsc",
"start": "yarn build && nodemon dist/index.js"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"cz-git": "^1.3.11",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"jest": "^29.0.3",
"prettier": "^2.7.1",
"prettier-eslint-cli": "^7.1.0",
"ts-jest": "^29.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git",
"useEmoji": true
}
},
"dependencies": {
"dotenv": "^16.0.2",
"redis": "^4.3.1"
}
}