-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 985 Bytes
/
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
{
"name": "@spokedev/jigsaw_recruitment",
"version": "1.0.0",
"description": "Recruitment Project",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest --collectCoverage"
},
"author": "jigsaw.xyz",
"license": "UNLICENSED",
"dependencies": {
"aws-sdk": "^2.1184.0",
"express": "^4.16.4"
},
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^28.1.3",
"supertest": "^6.2.4"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules"
],
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90
}
},
"coveragePathIgnorePatterns": [
"node_modules",
"<rootDir>/src/core_utils/*"
]
}
}