-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 796 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 796 Bytes
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
{
"name": "cachejsorm",
"version": "1.0.0",
"description": "This is a JavaScript ORM supporting Caching",
"main": "server.js",
"scripts": {
"test": "test",
"postinstall": "node npminstall.js",
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "none"
},
"keywords": [
"orm",
"javsscript"
],
"author": "pranav kakde",
"license": "MIT",
"devDependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"gulp": "^4.0.0",
"gulp-zip": "^4.2.0",
"mongoose": "^5.7.5",
"morgan": "^1.9.1",
"nodemon": "^2.0.4",
"rotating-file-stream": "^1.4.0",
"serve-static": "^1.13.2"
},
"dependencies": {
"mssql": "^5.0.4",
"mysql": "^2.16.0",
"pg": "^7.11.0"
}
}