-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 826 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 826 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
{
"name": "@appgeist/storage-example-with-auth",
"version": "1.1.3",
"description": "A sample project to demonstrate the usage of @appgeist/storage with authentication",
"main": "index.js",
"author": {
"name": "Ionut-Cristian Florescu",
"email": "ionut.florescu@gmail.com",
"url": "https://github.com/icflorescu"
},
"private": true,
"license": "ISC",
"scripts": {
"start": "NODE_ENV=production node index.js",
"dev": "nodemon"
},
"devDependencies": {
"@appgeist/eslint-config-base": "^1.3.1",
"@types/http-status-codes": "^1.2.0",
"nodemon": "^2.0.3"
},
"dependencies": {
"@appgeist/storage": "^1.5.4",
"cors": "^2.8.5",
"delay": "^4.3.0",
"express": "^4.17.1",
"helmet": "^3.22.0",
"http-status-codes": "^1.4.0",
"morgan": "^1.10.0"
}
}