-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.87 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": "fastify-redis-boilerplate",
"version": "1.0.1",
"description": "a fastify redis boilerplate",
"main": "src/server/index.js",
"directories": {
"src": "src",
"tests": "tests"
},
"bin": {
"build": "./build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/milkandsour/fastify-redis-boilerplate.git"
},
"scripts": {
"start": "node_modules/.bin/pm2-docker server.yml --json --env production --name nyan-asd",
"debug": "node_modules/.bin/pm2-docker server-debug.yml",
"import": "node src/scripts/index.js import ./tests/payloads/import/reviews.json",
"test": "npm run lint && npm run mocha",
"lint": "node_modules/.bin/eslint src/server src/scripts",
"fix-lint": "node_modules/.bin/eslint src/server src/scripts --fix",
"mocha": "node_modules/.bin/_mocha tests/unit/**/*.js tests/functional/**/*.js --no-timeouts -R nyan --exit",
"coverage": "node_modules/.bin/nyc npm run mocha",
"compose-tests": "npm run import && npm run coverage",
"compose-debug": "npm run import && npm run debug",
"benchmark": "node src/scripts benchmark"
},
"author": "Andrea Colaci",
"license": "ISC",
"dependencies": {
"fastify": "^1.13.3",
"fastify-compress": "^0.7.1",
"fastify-cors": "^1.0.0",
"ioredis": "^4.3.0",
"pm2": "^3.2.4"
},
"engines": {
"node": ">=10"
},
"keywords": [
"fastify",
"redis",
"json",
"schema",
"open",
"api",
"rest",
"boilerplate"
],
"devDependencies": {
"JSONStream": "^1.3.5",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"chai-spies": "^1.0.0",
"eslint": "^5.12.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"ms": "^2.1.1",
"nyc": "^13.1.0",
"range": "0.0.3",
"uuid": "^3.3.2",
"wrk": "^1.2.0",
"yargs": "^12.0.5"
}
}