-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 934 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
38
39
40
41
{
"name": "yarn-api",
"version": "1.0.0",
"description": "This an API for yarn store frontend",
"main": "index.js",
"scripts": {
"dev": "nodemon index.js",
"start": "node index.js",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndresMpa/courses.git"
},
"keywords": [
"js",
"api",
"rest",
"express"
],
"author": "AndresMpa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AndresMpa/courses/issues"
},
"homepage": "https://github.com/AndresMpa/courses#readme",
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"nodemon": "^2.0.19",
"prettier": "^2.7.1"
},
"dependencies": {
"@hapi/boom": "^10.0.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"faker": "^5.5.3",
"joi": "^17.6.0"
}
}