-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"scripts": {
"compile": "tsc --project ./src",
"compile:check": "yarn compile --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"start": "node -r dotenv/config dist/index.js",
"ci:lint": "eslint --ext .ts --ignore-path .gitignore .",
"ci:format": "prettier --ignore-path .gitignore -l .",
"lint": "yarn run ci:lint --fix",
"lint-format-staged": "lint-staged",
"format": "yarn run ci:format --write",
"build": "yarn compile",
"dev": "nodemon src/index.js"
},
"dependencies": {
"@hapi/hapi": "^19.1.1",
"@hapi/joi": "^17.1.1",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"laabr": "^6.0.2",
"tmi.js": "^1.5.0"
},
"devDependencies": {
"@types/faker": "^4.1.11",
"@types/hapi__hapi": "^19.0.2",
"@types/hapi__joi": "^16.0.12",
"@types/jest": "^25.2.1",
"@types/lodash": "^4.14.150",
"@types/tmi.js": "^1.4.0",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"eslint": "^6.8.0",
"faker": "^4.1.0",
"husky": "^4.2.5",
"jest": "^25.2.7",
"lint-staged": ">=10",
"lodash": "^4.17.19",
"nock": "^12.0.3",
"nodemon": "^2.0.3",
"prettier": "^2.0.4",
"ts-jest": "^25.4.0",
"typescript": "^3.8.3",
"utility-types": "^3.10.0"
}
}