-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.53 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "word-api",
"version": "0.5.0",
"description": "An API for retrieving and saving words",
"main": "server.js",
"scripts": {
"start": "node server.js",
"serve": "nodemon server.js --exec",
"test": "mocha --recursive --exit --timeout 1000000",
"lint": "eslint --fix --ext .js,.jsx ."
},
"repository": {
"type": "git",
"url": "https://github.com/MrTimeey/word-api.git"
},
"dependencies": {
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"moment": "^2.29.1",
"moment-duration-format": "^2.3.2",
"mongoose": "^5.12.0",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.3.1",
"mocha": "^8.3.2",
"mockgoose": "^8.0.4",
"nodemon": "^2.0.7",
"prettier": "^1.19.1"
},
"engines": {
"node": "14.x"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 5,
"semi": true,
"singleQuote": true,
"printWidth": 120
},
"keywords": [
"words",
"word-of-the-day",
"word-api",
"api",
"nodejs",
"express",
"mongoose",
"swagger",
"openapi"
],
"author": {
"name": "MrTimeey",
"url": "https://github.com/MrTimeey"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/MrTimeey/word-api/issues"
},
"homepage": "https://github.com/MrTimeey/word-api#readme"
}