-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 981 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": "words-counter-and-stats",
"version": "1.0.0",
"description": "Words counter and statistics",
"main": "index.js",
"scripts": {
"dev": "nodemon ./src/app.js",
"lint": "node_modules/.bin/standard",
"lint-fix": "node_modules/.bin/standard --fix",
"docs": "node_modules/.bin/apidoc -c src/routes/api -i src/routes/api -o docs/",
"start": "node --max-old-space-size=2048 ./src/app.js",
"docker-start": "./scripts/docker-start.sh",
"docker-stop": "./scripts/docker-stop.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "LiorRabin",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ioredis": "^4.16.2",
"morgan": "^1.10.0",
"pino": "^6.2.0",
"pino-pretty": "^4.0.0"
},
"devDependencies": {
"apidoc": "^0.20.1",
"standard": "^14.3.3"
},
"standard": {
"ignore": [
"/docs/"
]
}
}