-
-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
65 lines (65 loc) · 1.83 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": "abibliadigital",
"version": "0.3.1",
"description": "A RESTful API for Bible (nvi, ra, acf, kjv, bbe)",
"main": "index.js",
"repository": "https://github.com/omarciovsena/abibliadigital",
"author": "Márcio Sena <[email protected]>",
"license": "MIT",
"private": false,
"engines": {
"node": ">=16.20.1"
},
"scripts": {
"dev": "nodemon --exec babel-node app.js",
"lint": "eslint ./",
"start": "NODE_ENV=production babel-node app.js",
"test": "yarn test:db && jest --testTimeout=25000",
"test:coverage": "jest --coverage --testTimeout=25000",
"test:db": "babel-node __test__/initDatabase.js",
"test:watch": "jest --watch --coverage --testTimeout=25000"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
},
"dependencies": {
"@babel/cli": "^7.24.6",
"@babel/core": "^7.24.6",
"@babel/node": "^7.24.6",
"@babel/preset-env": "^7.24.6",
"@sendgrid/mail": "^6.5.5",
"@zeit/next-css": "^1.0.1",
"axios": "^0.28.0",
"body-parser": "^1.20.2",
"chalk": "^3.0.0",
"cors": "^2.8.5",
"dotenv": "^8.6.0",
"express": "^4.18.2",
"generate-password": "^1.7.0",
"i18n": "^0.8.6",
"jest": "^24.9.0",
"jsonwebtoken": "^8.0.0",
"md5": "^2.3.0",
"moment": "^2.29.4",
"mongoose": "^5.13.20",
"pug": "^3.0.3",
"redis": "^3.1.2",
"supertest": "^4.0.2"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^3.1.0",
"mongoose-seed": "^0.6.0",
"node-mocks-http": "^1.10.1",
"nodemon": "^2.0.7"
}
}