-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
47
48
49
50
51
52
{
"name": "weekly-challenges",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch --verbose",
"test:coverage": "jest --coverage --verbose --watchAll=false",
"test:2023": "jest --testPathPattern=2023 --verbose",
"test:2022": "jest --testPathPattern=2022 --verbose",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:watch": "eslint . --watch",
"prepare": "husky install"
},
"dependencies": {
"mysql": "^2.18.1",
"node-fetch": "2.6.7",
"puppeteer": "^22.12.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.3",
"jest": "^29.3.1",
"lint-staged": "^13.1.2"
},
"keywords": [
"javascript",
"challenges",
"weekly",
"coding",
"practice",
"problems"
],
"author": "marcode24",
"license": "ISC",
"description": "weekly coding challenges in javascript",
"jest": {
"coverageThreshold": {
"global": {
"branches": 85,
"functions": 85,
"lines": 85,
"statements": 85
}
}
}
}