-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.34 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
{
"name": "tfb-kjmp-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test nyc tape 'src/tests/*' | tap-spec",
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"cov": "npm test -- --coverage --watchAll=false",
"report-test": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t 064e11d9-e351-4e4f-899d-f13af28649fb"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fac20/tfb-kjmp-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/fac20/tfb-kjmp-backend/issues"
},
"homepage": "https://github.com/fac20/tfb-kjmp-backend#readme",
"dependencies": {
"airtable": "^0.11.0",
"connect-history-api-fallback": "^1.6.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"devDependencies": {
"codecov": "^3.8.0",
"eslint-config-prettier": "^6.13.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"nock": "^13.0.4",
"nodemon": "^2.0.5",
"nyc": "^15.1.0",
"prettier": "^2.1.2",
"supertest": "^5.0.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.1"
}
}