-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 918 Bytes
/
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
{
"name": "muffin",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && mkdir -p dist && tsc",
"lint": "eslint --cache --report-unused-disable-directives . && prettier --check .",
"lint-fix": "eslint --fix --cache --report-unused-disable-directives .; prettier --write .",
"start": "node dist/app.js",
"test": "jest"
},
"dependencies": {
"@slack/bolt": "^3.14.0",
"dotenv": "^16.3.1",
"luxon": "^3.4.3",
"mongoose": "^7.5.3"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/luxon": "^3.3.2",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.50.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}