-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 881 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 881 Bytes
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
{
"name": "dev-like-me",
"version": "1.0.0",
"scripts": {
"dev": "bun --watch src/app.ts",
"start": "bun src/app.ts",
"tunnel": "ssh -R 80:localhost:3000 serveo.net",
"pocketbase": "pocketbase/pocketbase serve",
"import-categories": "bun run importCategories.js"
},
"author": "Livio Gamassia",
"license": "ISC",
"type": "module",
"dependencies": {
"@slack/bolt": "^4.2.1",
"@slack/webhook": "^7.0.2",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"lodash": "^4.17.21",
"pocketbase": "^0.25.2"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/node": "^22.14.1",
"eslint-config-next": "^15.3.0",
"eslint-plugin-prefer-arrow-functions": "^3.6.2",
"eslint-plugin-react": "^7.37.5",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
}
}