-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
62 lines (62 loc) · 1.75 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
{
"name": "bhagavad-gita-api",
"version": "3.3.0",
"description": "A lightweight Node-based Bhagavad Gita API server",
"author": "Pt. Prashant Tripathi",
"license": "GNU",
"homepage": "https://vedicscriptures.github.io",
"main": "server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "mocha tests/*.js",
"lint": "eslint --fix \"{,!(node_modules)/**/}*.{js,jsx}\"",
"prettier": "prettier --write \"{,!(node_modules)/**/}*.{js,json}\"",
"format": "npm run prettier && npm lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vedicscriptures/bhagavadgitaapi.git"
},
"keywords": [
"gita-api",
"bhagavad-gita-api",
"bhagavad-gita",
"karma-yoga",
"api",
"hinduism",
"hindu",
"sanatadharma",
"vedic",
"krishna",
"iskcon",
"api-rest"
],
"bugs": {
"url": "https://github.com/vedicscriptures/bhagavad-gita-api/issues"
},
"dependencies": {
"body-parser": "1.20.3",
"dotenv": "16.0.0",
"express": "4.21.1",
"mongoose": "5.13.20",
"rate-limiter-flexible": "2.3.6",
"redis": "4.0.3" ,"express-rate-limit": "7.4.0"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"mocha": "^9.2.2",
"nodemon": "2.0.22",
"prettier": "2.6.1"
},
"engines": {
"node": "12.x",
"npm": "7.x"
}
}