-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.17 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
{
"name": "blogboard",
"version": "0.0.1",
"description": "",
"main": "app.js",
"scripts": {
"lint": "eslint . --fix",
"start": "node src/app.js",
"test": "echo \"Error: no test specified\" && exit 1",
"cy:open": "cypress open",
"cy:run": "cypress run",
"jest": "jest",
"pre-build": "sh pre-build-script.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/byteford/BlogBoard.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/byteford/BlogBoard/issues"
},
"homepage": "https://github.com/byteford/BlogBoard#readme",
"dependencies": {
"express": "^4.17.1",
"express-handlebars": "^5.2.0"
},
"devDependencies": {
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"jest": "^26.6.1"
},
"jest": {
"verbose": true,
"modulePathIgnorePatterns": [
"/cypress/"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
}
}