-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.79 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
74
75
76
77
78
{
"author": "Geno Roupsky <[email protected]>",
"name": "bspb-members-server",
"description": "Management system for BSPB members",
"version": "1.0.8",
"engines": {
"node": ">=8.0.0"
},
"standard": {
"ignore": [
"public/javascript/ActionheroWebsocketClient.*"
],
"globals": [
"describe",
"test",
"beforeAll",
"beforeEach",
"afterAll",
"afterEach",
"expect"
]
},
"jest": {
"coverageDirectory": "./coverage/"
},
"lint-staged": {
"*.js": [
"standard --fix",
"git add"
]
},
"dependencies": {
"actionhero": "19.0.4",
"ah-cors-plugin": "^0.1.1",
"ah-sequelize-plugin": "^1.0.3",
"bcryptjs": "^2.4.3",
"boolean": "^1.0.0",
"csv-parser": "^2.0.0",
"csv-stringify": "^4.0.1",
"date-fns": "^1.29.0",
"ejs": "^2.6.1",
"email-templates": "^5.0.1",
"email-validator": "^2.0.4",
"event-stream": "^4.0.0",
"google-libphonenumber": "^3.1.8",
"ioredis": "^4.6.2",
"lodash.omit": "^4.5.0",
"mysql": "^2.16.0",
"mysql2": "^1.6.1",
"nodemailer": "^4.6.8",
"nodemailer-mailgun-transport": "^1.4.0",
"nodemailer-mock-transport": "^1.3.0",
"parse-database-url": "^0.3.0",
"pem": "^1.13.0",
"pg": "^7.4.1",
"pg-hstore": "^2.3.2",
"sequelize": "^4.38.0",
"sequelize-cli": "^5.0.0",
"ws": "^6.2.0"
},
"devDependencies": {
"husky": "^1.1.2",
"jest": "^24.5.0",
"jest-matcher-utils": "^23.0.0",
"lint-staged": "^7.3.0",
"sequelize-fixtures": "^0.8.0",
"sqlite3": "^4.0.0",
"standard": "^12.0.1"
},
"scripts": {
"precommit": "lint-staged",
"start": "actionhero start",
"actionhero": "actionhero",
"migrate": "sequelize db:migrate",
"pretest": "standard",
"test": "jest"
}
}