-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "time-variance-authority",
"version": "1.0.0",
"description": "Time tracking and analysis tool",
"main": "dist/index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"dev": "ts-node-dev --respawn src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint 'src/**/*.{ts,tsx,js,jsx}'",
"format": "prettier --write 'src/**/*.{ts,tsx,js,jsx,json,md}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx,js,jsx}' --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^8.57.0",
"@types/aws-lambda": "^8.10.147",
"@types/node": "^22.13.5",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^16.0.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@slack/web-api": "^7.8.0",
"@types/axios": "^0.14.4",
"@types/moment-timezone": "^0.5.30",
"axios": "^1.7.9",
"moment-timezone": "^0.5.47"
}
}