-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.08 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
{
"name": "babyfoot-api",
"version": "1.0.0",
"main": "bin/index.js",
"private": true,
"scripts": {
"dev": "npm run test:watch",
"build": "babel bin -d dist",
"db:create-migration": "migrate -c arangodb -t migration-template.js create",
"db:migrate": "migrate -c arangodb up",
"db:rollback": "migrate -c arangodb down",
"jobs:ranking": "babel-node src/jobs/ranking.js",
"release": "standard-version",
"serve": "nodemon -i node_modules -x babel-node bin/index.js",
"start": "babel-node bin/index.js",
"test": "jest",
"test:watch": "npm test -- --watch",
"lint": "eslint src --fix"
},
"lint-staged": {
"src/**/*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"commit-msg": "validate-commit-msg",
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/node": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"babel-plugin-lodash": "^3.3.4",
"coveralls": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-standard": "^4.0.1",
"faker": "^4.1.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.11",
"migrate": "^1.7.0",
"nodemon": "^2.0.4",
"prettier": "^2.0.5",
"rosie": "^2.0.1",
"standard-version": "^8.0.0",
"supertest": "^4.0.2",
"validate-commit-msg": "^2.14.0"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"arangojs": "^7.0.2",
"arpad": "^1.0.2",
"async": "^3.2.0",
"awilix": "^4.2.6",
"axios": "^0.21.0",
"bull": "^3.18.0",
"convict": "^5.2.0",
"dotenv": "^8.2.0",
"es6-error": "^4.1.1",
"got": "^11.8.0",
"http-status": "^1.4.2",
"koa": "^2.13.0",
"koa-joi-router": "^6.0.2",
"koa-morgan": "^1.0.1",
"lodash": "^4.17.20",
"loglevel": "^1.7.0",
"ramda": "^0.27.1",
"socket.io-client": "^3.0.4",
"uuid": "^8.1.0"
}
}