-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.63 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
{
"name": "deviantart-helper-backend-koa",
"version": "1.0.0",
"private": false,
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run serve:app",
"build": "babel src -d build",
"build:watch": "babel src -w -d build",
"serve:app": "nodemon build/index.js",
"serve:scheduler": "nodemon build/index-scheduler.js",
"fetch": "node build/index-fetch.js",
"test": "jest",
"test:staged": "jest --env=jsdom --findRelatedTests",
"coverage": "jest --coverage --no-cache",
"flow": "flow"
},
"author": "VladimirButin",
"license": "ISC",
"homepage": "https://bitbucket.org/VladimirButin/deviantart-helper-backend-koa",
"dependencies": {
"@koa/cors": "^2.2.3",
"axios": "^0.19.0",
"chalk": "^2.4.2",
"grant-koa": "^4.6.6",
"koa": "^2.11.0",
"koa-compress": "^3.0.0",
"koa-joi-router": "^5.3.0",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-session": "^5.12.3",
"koa-static": "^5.0.0",
"koa2-ratelimit": "^0.8.0",
"mongodb": "^3.4.1",
"qs": "^6.9.1"
},
"lint-staged": {
"src/**/*.js": [
"eslint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^22.21.0",
"eslint-plugin-jsdoc": "^4.8.4",
"husky": "^1.3.1",
"jest": "^24.9.0",
"lint-staged": "^8.2.1",
"nodemon": "^1.19.4"
}
}