-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"scripts": {
"test": "jest"
},
"type": "module",
"devDependencies": {
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"express": "^4.17.2",
"jest": "^27.4.4"
},
"jest": {
"projects": [
{
"displayName": "JS1-Week1",
"testMatch": [
"<rootDir>/JS1-Week1/*.js"
]
},
{
"displayName": "JS1-Week2",
"testMatch": [
"<rootDir>/JS1-Week2/*.js"
]
},
{
"displayName": "JS1-Week3",
"testMatch": [
"<rootDir>/JS1-Week3/*.js"
]
},
{
"displayName": "JS2-Week1",
"testMatch": [
"<rootDir>/JS2-Week1/*.js"
]
},
{
"displayName": "JS2-Week2",
"testMatch": [
"<rootDir>/JS2-Week2/*.js"
]
},
{
"displayName": "JS2-Week3",
"testMatch": [
"<rootDir>/JS2-Week3/*.js"
]
},
{
"displayName": "CYF-Fundamentals",
"testMatch": [
"<rootDir>/CYF-Fundamentals/*.js"
]
},
{
"displayName": "CYF Array and Object methods",
"testMatch": [
"<rootDir>/CYF-Array-and-Object-methods/*.js"
]
},
{
"displayName": "CYF Catch Up Kata",
"testMatch": [
"<rootDir>/CYF-Catch-Up-Kata/*.js"
]
},
{
"displayName": "CYF React",
"testMatch": [
"<rootDir>/CYF-React/*.js"
]
},
{
"displayName": "CYF Node",
"testMatch": [
"<rootDir>/CYF-Node/*.js"
]
},
{
"displayName": "JS3-Week1",
"testMatch": [
"<rootDir>/JS3-Week1/*.js"
]
},
{
"displayName": "JS3-Week2",
"testMatch": [
"<rootDir>/JS3-Week2/*.js"
]
},
{
"displayName": "JS3-Week3",
"testMatch": [
"<rootDir>/JS3-Week3/*.js"
]
}
]
},
"dependencies": {
"node-fetch": "^3.2.0"
}
}