-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.98 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "flashcards_backend",
"version": "0.0.1",
"description": "Back end for the quick decks app.",
"main": "index.js",
"scripts": {
"pretest": "npx knex migrate:rollback --env=testing && npx knex migrate:latest --env=testing",
"test": "cross-env NODE_ENV=testing jest --detectOpenHandles --forceExit --coverage --runInBand",
"start": "node index.js",
"server": "nodemon index.js ",
"lint": "eslint . --ext .js",
"lint-fix": "eslint . --ext .js --fix",
"migrate-dev": "npx knex migrate:rollback --all && npx knex migrate:latest",
"seed": "npx knex seed:run"
},
"jest": {
"testEnvironment": "node"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-fix && npm run lint ",
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/LABS-EU3/flashcards_backend.git"
},
"keywords": [
"express",
"node",
"postgres",
"REST"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LABS-EU3/flashcards_backend/issues"
},
"homepage": "https://github.com/LABS-EU3/flashcards_backend#readme",
"dependencies": {
"@hapi/joi": "^17.1.0",
"bcrypt": "^3.0.7",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^3.21.2",
"jsonwebtoken": "^8.5.1",
"knex": "^0.20.8",
"mailgen": "^2.0.10",
"nodemailer": "^6.4.2",
"nodemailer-stub": "^1.2.1",
"passport": "^0.4.1",
"passport-google-oauth": "^2.0.0",
"pg": "^7.17.1"
},
"devDependencies": {
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.1",
"jest": "^25.1.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1",
"supertest": "^4.0.2"
}
}