-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 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
57
58
59
60
61
{
"name": "flashcard-api",
"version": "1.0.0",
"engines": {
"node": "13.12.x"
},
"description": "",
"main": "server.js",
"scripts": {
"dev": "LOGGING=ON nodemon server.js",
"debug": "LOGGING=VERBOSE nodemon server.js",
"test": "TESTING=TRUE jest tests/*.test.js",
"testdb": "TESTING=TRUE jest -i testsdb/*.test.js",
"travistestdb": "TESTING=TRUE TESTDATABASE=travis_ci_test SECRET=testsecret jest --coverage=true",
"initdb": "node db/build.js",
"initdemodb": "node db/examples/addExamples.js",
"lint": "eslint .",
"prettify": "pretty-quick --staged"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint",
"pretty-quick --staged"
]
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"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",
"jest": "^26.0.1",
"lint-staged": "^10.2.2",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"dependencies": {
"supertest": "^4.0.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"pg": "^8.2.1"
}
}