-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 940 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
{
"name": "masterclass-json-api",
"version": "1.0.0",
"engines": {
"node": ">=16.0.0"
},
"engineStrict": true,
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json .",
"lint:fix": "eslint --fix -c .eslintrc.json .",
"start": "node .",
"dev": "nodemon ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/betrybe/masterclass-json-api.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/betrybe/masterclass-json-api/issues"
},
"homepage": "https://github.com/betrybe/masterclass-json-api#readme",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"eslint": "^8.26.0",
"eslint-config-trybe-backend": "2.1.0",
"faker": "^5.5.3",
"jest": "^29.5.0",
"nodemon": "^2.0.22"
}
}