-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.58 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
46
47
48
49
50
51
52
{
"name": "lunchbot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint src",
"lint:fix": "eslint --fix src",
"test": "jest",
"test:watch": "jest --watchAll",
"dev": "nodemon src/index.ts",
"start": "ts-node src/index.ts",
"generate-config-schema": "ts-node src/generate-config-schema.ts",
"prepare": "husky install"
},
"author": "",
"license": "ISC",
"dependencies": {
"botbuilder": "^4.19.2",
"express": "^4.18.2",
"express-winston": "^4.2.0",
"node-schedule": "^2.1.1",
"pg": "^8.9.0",
"sequelize": "^6.29.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"winston": "^3.8.2",
"zod": "^3.21.4",
"zod-to-json-schema": "^3.21.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-winston": "^4.0.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.16.1",
"@types/node-schedule": "^2.1.0",
"@types/pg": "^8.6.6",
"@types/sequelize": "^4.28.14",
"@types/winston": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.4.3",
"nodemon": "^2.0.21",
"prettier": "^2.8.8"
}
}