-
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.42 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.42 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": "sasami",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && npm run serve",
"build": "npx tsc",
"serve": "node --require dotenv/config dist/app.js",
"lint": "eslint --fix 'src/**/*.{js,ts}'",
"lint-fix": "eslint --fix './src/*.{js,ts}' && prettier --write './src/*.{js,ts}'",
"prepare": "husky"
},
"keywords": [],
"author": "",
"license": "MIT",
"description": "",
"dependencies": {
"@prisma/client": "^6.4.1",
"@slack/bolt": "^4.2.1",
"@slack/web-api": "^7.8.0",
"axios": "^1.8.3",
"dotenv": "^16.4.7",
"husky": "^9.1.7",
"typescript": "^5.8.2"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": "^22.13.9",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-jsdoc": "^50.6.3",
"eslint-plugin-prettier": "^5.2.3",
"lint-staged": "^15.4.3",
"prettier": "^3.5.3",
"prisma": "^6.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"npm run lint-fix"
]
}
}