-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 968 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
32
33
34
35
36
{
"name": "hippo",
"version": "1.0.0",
"author": "Micha Hanselmann",
"description": "asset size comparison and reporting tool",
"private": true,
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"prepare": "husky",
"lint": "prettier --check \"src/**/*.ts\" index.ts",
"format": "prettier --write \"src/**/*.ts\" index.ts"
},
"keywords": [],
"license": "MIT",
"devDependencies": {
"@types/node": "^22.9.0",
"@types/semver": "^7.5.8",
"husky": "^9.1.6",
"lint-staged": "^15.2.0",
"prettier": "^3.3.3",
"ts-node": "^10.6.0",
"typescript": "^5.6.3"
},
"lint-staged": {
"*/*.ts": "prettier --write"
},
"dependencies": {
"@slack/bolt": "^4.1.0",
"dotenv": "^16.4.5",
"pg": "^8.13.1",
"pg-hstore": "^2.3.4",
"semver": "^7.6.3",
"sequelize": "^6.37.5"
}
}