-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
65 lines (65 loc) · 1.48 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
{
"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": "^5.0.0",
"dotenv": "^8.2.0",
"husky": "^4.2.3",
"jest": "^25.5.4",
"pm2": "^4.2.3"
},
"dependencies": {
"@types/node-fetch": "^2.5.7",
"arangojs": "^7.0.2",
"base-x": "^3.0.8",
"bcrypt": "^5.0.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mailgun-js": "^0.22.0",
"mongodb": "^3.6.1",
"neo4j-driver": "^4.1.1",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.4",
"password-generator": "^2.3.2",
"pg": "^8.0.3",
"pg-escape": "^0.2.0",
"sequelize": "^5.21.6",
"unique-names-generator": "^4.3.0",
"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"
}
}
}