-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.43 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "haifa-dev-backend",
"version": "1.0.0",
"description": "The back-end server for the official Haifa:dev website",
"main": "index.js",
"engines": {
"node": "12.13.1",
"npm": "6.13.4"
},
"scripts": {
"start": "node index.js",
"dev": "npx nodemon index.js",
"db:create": "npx sequelize-cli db:create",
"db:migrate": "npx sequelize-cli db:migrate",
"db:seed": "npx sequelize-cli db:seed:all",
"db:seed:undo": "npx sequelize-cli db:seed:all:undo",
"db:init": "npm run db:create;npm run db:migrate;npm run db:seed",
"share": "npx ngrok http 5000",
"test": "NODE_ENV=test jest -i --detectOpenHandles",
"pretest": "NODE_ENV=test npx sequelize-cli db:create; NODE_ENV=test npx sequelize-cli db:migrate",
"posttest": "NODE_ENV=test npx sequelize-cli db:drop",
"lint": "eslint --ignore-path .gitignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/SergwayKhodyachikh/haifa-dev-backend.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/SergwayKhodyachikh/haifa-dev-backend/issues"
},
"homepage": "https://github.com/SergwayKhodyachikh/haifa-dev-backend#readme",
"dependencies": {
"@hapi/joi": "^17.1.1",
"@types/jest": "^26.0.14",
"argv": "0.0.2",
"bcryptjs": "^2.4.3",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"express": "^4.17.1",
"faker": "^5.1.0",
"handlebars": "^4.7.6",
"helmet": "^4.1.1",
"html-to-text": "^5.1.1",
"jest": "^26.5.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.13",
"pg": "^8.4.0",
"pg-hstore": "^2.3.3",
"prettier": "^2.1.2",
"sequelize": "^6.3.5",
"sequelize-cli": "^6.2.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"@types/sequelize": "^4.28.9",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.4",
"jsdoc": "^3.6.6",
"nodemon": "^2.0.2",
"supertest": "^5.0.0"
},
"nodemonConfig": {
"ignore": [
"public",
"public/*"
],
"delay": "1000"
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"coveragePathIgnorePatterns": [
"/node_modules/"
]
},
"delay": "5000"
}