-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.18 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
{
"name": "localhostdb",
"version": "1.0.1-alpha.1",
"description": "Locally hosted db engine, for persistance data storage using express and nedb",
"main": "db.js",
"scripts": {
"build": "tsc -p .",
"dist": "dist.bat",
"clean": "clean.bat",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon"
},
"repository": {
"type": "git",
"url": "https://github.com/harshgupta97/localhostdb.git"
},
"keywords": [
"nedb",
"express",
"local",
"db",
"local",
"storage",
"persistance",
"storage"
],
"author": "Harsh Gupta",
"license": "ISC",
"bugs": {
"url": "https://github.com/harshgupta97/localhostdb/issues"
},
"homepage": "https://github.com/harshgupta97/localhostdb#readme",
"dependencies": {
"chalk": "^4.1.2",
"cors": "^2.8.5",
"express": "^4.17.1",
"figlet": "^1.5.2",
"nedb": "^1.8.0",
"winston": "^3.3.3"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/figlet": "^1.5.4",
"@types/nedb": "^1.8.12",
"@types/node": "^16.7.1",
"nodemon": "^2.0.12",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
}
}