-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.23 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
{
"name": "gear.tech",
"version": "1.0.0",
"description": "A simple 'URL' shortening web-app.",
"keywords": [
"URL",
"Short-URL",
"web-app",
"nodeJS",
"expressJs",
"naive-app"
],
"license": "MIT",
"author": {
"name": "Palash Sarkar",
"email": "[email protected]",
"url": "https://github.com/Tejas07PSK"
},
"files": [
"*"
],
"main": "./bin/www",
"bin": {
"gear.tech": "./bin/www"
},
"repository": {
"type": "git",
"url": "https://github.com/Tejas07PSK/gear.tech"
},
"config": {
"port": "3000"
},
"private": true,
"scripts": {
"start": "node ./bin/www",
"stop": "pkill -SIGINT gear",
"ndm": "nodemon ./bin/www",
"uthashing": "node ./hashing_id/unitTest",
"utdbmodels": "node ./models/unitTest"
},
"dependencies": {
"cookie-parser": "~1.4.3",
"debug": "~4.1.0",
"ejs": "~2.6.1",
"express": "~4.16.0",
"http-errors": "~1.7.1",
"morgan": "~1.9.0",
"big-integer": "~1.6.40",
"mongoose": "~5.4.0"
},
"devDependencies": {
"nodemon": "~1.18.9"
},
"engines": {
"node": ">=10.14.1 <12.0.0",
"npm": "~6.5.0"
},
"os": [
"darwin",
"linux"
],
"cpu": [
"x64",
"x86"
]
}