-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.84 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
{
"name": "robotina",
"version": "1.0.0",
"description": "El robot de argentinaprograma.com",
"main": "index.js",
"author": "",
"license": "ISC",
"homepage": "https://github.com/r-argentina-programa/robotina#readme",
"bugs": {
"url": "https://github.com/r-argentina-programa/robotina/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/r-argentina-programa/robotina.git"
},
"scripts": {
"start:dev": "tsc-watch --onSuccess \"cross-env NODE_ENV=dev node ./dist/index.js\"",
"start:prod": "tsc-watch --onSuccess \"cross-env NODE_ENV=prod node ./dist/index.js\"",
"build": "tsc --build",
"test": "jest --unhandled-rejections=strict",
"test:dev": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
},
"dependencies": {
"@slack/bolt": "^3.12.1",
"axios": "^0.27.2",
"slack-block-builder": "^2.7.0"
},
"devDependencies": {
"@types/jest": "^29.0.3",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"cross-env": "^7.0.3",
"dotenv": "^16.0.2",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.1",
"husky": "^8.0.3",
"jest": "^29.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.2",
"tsc-watch": "^5.0.3",
"typescript": "^4.8.3"
}
}