-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
{
"name": "storedin",
"version": "1.0.0",
"description": "Pastebin like application's backend developed in NodeJS that utilizes local or remote storage and fetching.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "jest",
"sass": "sass --watch web/storedin.scss:views/storedin.min.css --style compressed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intern0t/storedin.git"
},
"keywords": [
"Pastebin",
"paste",
"pastebin",
"remote",
"storage",
"files",
"file",
"cache",
"backend",
"local",
"script"
],
"author": "Prashant Shrestha (intern0t)",
"license": "MIT",
"bugs": {
"url": "https://github.com/intern0t/storedin/issues"
},
"homepage": "https://github.com/intern0t/storedin#readme",
"dependencies": {
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dayjs": "^1.8.32",
"express": "^4.17.1",
"express-promise-router": "^4.0.1",
"express-rate-limit": "^5.1.3",
"mkdirp": "^1.0.4",
"shortid": "^2.2.15",
"uuid": "^8.3.0"
},
"devDependencies": {
"jest": "^26.2.2",
"morgan": "^1.10.0",
"supertest": "^4.0.2"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}