-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.02 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "oribot",
"version": "0.0.0",
"private": true,
"description": "Where's your worklog?",
"license": "UNLICENSED",
"author": "Vít Rozsíval <[email protected]>",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "NODE_ENV=production run-s build:clean build:ts",
"build:clean": "rimraf build",
"build:ts": "tsc --project tsconfig.build.json",
"eslint": "eslint --cache --ext js,ts .",
"eslint:fix": "yarn eslint --fix",
"fix": "run-s ts prettier:fix eslint:fix",
"prepare": "is-ci || husky",
"prettier": "prettier --check './**/*.{html,json,md,yml}'",
"prettier:fix": "yarn prettier --write",
"qa": "run-s ts prettier eslint",
"start": "yarn start:app & yarn start:server",
"start:app": "NODE_ENV=production node build/app.js",
"start:server": "NODE_ENV=production node build/server.js",
"ts": "tsc --project tsconfig.json"
},
"dependencies": {
"@slack/bolt": "3.21.1",
"consola": "3.2.3",
"dotenv": "16.4.5",
"node-schedule": "2.1.1",
"node-static": "0.7.11"
},
"devDependencies": {
"@commitlint/cli": "19.4.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "22.4.2",
"@types/node-schedule": "2.1.7",
"@types/node-static": "0.7.11",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.2.0",
"eslint": "8.57.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-formatjs": "4.13.3",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.35.0",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-unicorn": "55.0.0",
"eslint-plugin-unused-imports": "3.2.0",
"husky": "9.1.5",
"is-ci": "3.0.1",
"lint-staged": "15.2.9",
"npm-run-all": "4.1.5",
"prettier": "3.3.3",
"prettier-plugin-package": "1.4.0",
"rimraf": "6.0.1",
"typescript": "5.5.4"
}
}