-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.14 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "verticals-backend",
"version": "0.1.0",
"description": "Backend part for verticals project",
"main": "./src/index.js",
"scripts": {
"start": "node ./src/index.js",
"dev": "concurrently \"pm2 start --node-args '-r dotenv/config' --no-daemon --env development\" \"npx serve uploads\"",
"lint": "eslint --ext .js ./src",
"lint:fix": "eslint --ext .js ./src --fix",
"test": "jest --config ./jest.config.js",
"test:watch": "jest --config ./jest.config.js --watch",
"test:coverage": "jest --config ./jest.config.js --coverage",
"test:stryker": "npx stryker run",
"graph": "npx madge --image graph.svg src/index.js",
"artillery": "artillery run ./tests/artillery/scenarios/backend.yml",
"clinic:env": "export $(cat .env | xargs)",
"clinic:doctor": "npm run clinic:env && clinic doctor --on-port 'npm run artillery' -- node ./src/index.js",
"clinic:bubbleproof": "npm run clinic:env && clinic bubbleproof --on-port 'npm run artillery' -- node ./src/index.js",
"clinic:flame": "npm run clinic:env && clinic flame --on-port 'npm run artillery' -- node ./src/index.js"
},
"author": "Max Romanyuta <[email protected]>",
"license": "MIT",
"keywords": [
"verticals",
"checklist",
"tasks",
"todo",
"organize",
"work",
"list",
"workspace",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/xom9ikk/verticals-backend.git"
},
"bugs": {
"url": "https://github.com/xom9ikk/verticals-backend/issues"
},
"homepage": "https://github.com/xom9ikk/verticals-backend#readme",
"dependencies": {
"ajv": "^7.1.1",
"ajv-formats": "^1.5.1",
"bcryptjs": "^2.4.3",
"chalk": "^4.1.0",
"date-fns": "^2.15.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^4.0.0",
"fastify": "^3.1.1",
"fastify-cors": "^5.2.0",
"fastify-helmet": "^4.0.2",
"fastify-multipart": "^2.0.3",
"form-data": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.2",
"lodash.camelcase": "^4.3.0",
"lodash.isarray": "^4.0.0",
"lodash.isobject": "^3.0.2",
"lodash.map": "^4.6.0",
"lodash.mapkeys": "^4.6.0",
"lodash.mapvalues": "^4.6.0",
"lodash.snakecase": "^4.1.1",
"middie": "^5.1.0",
"mime-types": "^2.1.27",
"performance-now": "^2.1.0",
"pg": "^8.3.0",
"pino": "^6.4.1",
"pino-multi-stream": "^5.1.1",
"pm2": "^4.4.0",
"prom-client": "^12.0.0",
"secure-json-parse": "^2.4.0",
"superagent": "^5.3.1",
"superagent-absolute": "^1.0.1",
"swagger-jsdoc": "^4.0.0",
"uuid": "^8.2.0",
"ws": "^7.3.1"
},
"devDependencies": {
"@stryker-mutator/core": "^4.5.0",
"@stryker-mutator/jest-runner": "^4.5.0",
"artillery": "^1.6.0-29",
"babel-eslint": "^10.1.0",
"concurrently": "^6.0.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"faker": "^4.1.0",
"jest": "^26.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": "14"
}
}