-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 845 Bytes
/
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
{
"name": "instafeed",
"version": "1.0.0",
"engines": {
"node": "16.4.0"
},
"description": "",
"main": "app.js",
"scripts": {
"start": "node ./app",
"devstart": "nodemon ./app"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tedyfrba/instafeed.git"
},
"author": "Tadeo Granese",
"license": "MIT",
"bugs": {
"url": "https://github.com/tedyfrba/instafeed/issues"
},
"homepage": "https://github.com/tedyfrba/instafeed#readme",
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-prettier": "^3.4.0",
"nodemon": "^2.0.12",
"prettier": "^2.3.2"
},
"dependencies": {
"express": "^4.17.1",
"moment": "^2.29.1",
"mongoose": "^6.0.4",
"yup": "^0.32.9"
}
}