-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.39 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
{
"name": "interview-concurency-service",
"version": "1.0.0",
"description": "DAZN BE developer interview task",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"build": "npm run lint && rm -rf node_modules && npm i --production && zip -rq ./build/package.zip node_modules src/* package.json",
"test": "npm run mocha-test --file 'test/unit/setup.spec.js' -- \"test/unit/**/*.spec.js\"",
"test-component": "npm run mocha-test --file 'test/component/setup.spec.js' -- \"test/component/**/*.spec.js\"",
"mocha-test": "mocha --timeout 0 --exit --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kovalenp/interview-concurency-service.git"
},
"author": "Pavel Kovalenko",
"license": "ISC",
"bugs": {
"url": "https://github.com/kovalenp/interview-concurency-service/issues"
},
"homepage": "https://github.com/kovalenp/interview-concurency-service#readme",
"dependencies": {
"async-redis": "^1.1.7",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"joi": "^14.3.1",
"joi-error-formatter": "^0.5.3",
"pino": "^6.2.0",
"prettier": "^2.0.4"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-mocha": "^6.3.0",
"mocha": "^7.1.1",
"sinon": "^9.0.2"
}
}