-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.34 KB
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
{
"name": "bechdel-beyond-api",
"version": "1.0.0",
"description": "Bechdel and beyond is a an app where you find more information about gender parity in movies and if they pass berchdel test or not",
"main": "server.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"test": "PGDATABASE=bbtest nyc tape tests/*.test.js | tap-spec",
"lint": "eslint .",
"prettify": "pretty-quick --staged",
"report-test": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"fetch": "node database/fetch.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"pretty-quick --staged"
]
},
"dependencies": {
"bcryptjs": "^2.4.3",
"codecov": "^3.7.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^9.0.0",
"node-fetch": "^2.6.0",
"pg": "^8.2.1"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"husky": "^4.2.5",
"lint-staged": "^10.2.4",
"nock": "^12.0.3",
"nodemon": "^2.0.4",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"supertest": "^4.0.2",
"tap-spec": "^5.0.0",
"tape": "^5.0.0"
},
"author": "",
"license": "ISC"
}