forked from garageScript/databases
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.27 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
{
"name": "databases",
"version": "1.0.0",
"description": "Create databases in postgres, mongoDB and neo4J",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"start": "node index.js",
"start:dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garageScript/databases.git"
},
"author": "garageScript",
"license": "ISC",
"bugs": {
"url": "https://github.com/gargeScript/databases/issues"
},
"homepage": "https://github.com/garageScript/databases#readme",
"devDependencies": {
"cypress": "^4.10.0",
"dotenv": "^8.2.0",
"husky": "^4.2.3",
"jest": "^25.3.0",
"pm2": "^4.2.3"
},
"dependencies": {
"bcrypt": "^4.0.1",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mailgun-js": "^0.22.0",
"node-fetch": "^2.6.0",
"nodemon": "^2.0.4",
"pg": "^8.0.2",
"pg-escape": "^0.2.0",
"sequelize": "^5.21.6",
"winston": "^3.2.1",
"yup": "^0.28.5"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"husky": {
"hooks": {
"pre-commit": "npm test",
"pre-push": "npm test"
}
}
}